`
<script>
function salto() {
document.write("<br>");
}
function imprimir(frase) {
document.write(frase);
salto();
}
function sortear(n) { return math.round(Math.random(n) * n); }
let numSorteo = Sortear(10);
let numIngresado = parseInt(prompt("Ingrese un numero del 0 al 10"));
if (numSorteo = numIngresado) { imprimir ("Felicidades"); } else { if (numIngresado > numSorteo) { imprimir ("Incorrecto, usted ha ingresado un numero mayor al sorteado, el cual fue" + numSorteo);
`