Esta es mi propuesta del ejercicio de adivinanzas
<meta charset="utf-8">
<h1><big>Ejercicio Juego de adivinanza</big></h1>
<script>
function saltarLinea(){
document.write("<br>");
document.write("<br>");
document.write("<br>");
};
function imprimir(frase){
document.write(frase);
saltarLinea();
};
function sorteo(n){
return Math.round(Math.random() * n);
}
var numeroBot = sorteo(10);
var numeroUser = parseInt(prompt("Ingrese un número entre 0 y 10"));
if (numeroUser == numeroBot){
imprimir("Felicidades, adivinaste el número del bot");
}
else{
if(numeroUser > numeroBot){
imprimir("Lo siento, fallaste en el intento. El número era menor que " + numeroUser);
}
else{
imprimir("Lo siento, fallaste en el intento. El número era mayor que " + numeroUser);
}
}
</script>