Te dejo mi version de este juego funcionando. saludos
<meta charset="UTF-8">
<h1>JUEGO DE ADIVINANZAS</h1>
<script>
function saltarLinea() {
document.write("<br>");
document.write("<br>");
}
function imprimir(frase) {
document.write(frase);
saltarLinea();
}
nombre = prompt("Cual es su nombre?");
numeroDelSistema = Math.round (Math.random()*10);
adivineElNumero = parseInt(prompt(nombre + " Elija un numero del 1 al 10 , trata de adivinar el numero que penso la computadora"));
if (adivineElNumero == numeroDelSistema) {
imprimir("<big>"+ nombre + " has ADIVINADO </big> el numero GANADOR fué el " + numeroDelSistema);
}
else {
imprimir("<big>"+ nombre + " PERDISTE </big> el numero era :"+ numeroDelSistema);
}
</script>