Siguiendo las instrucciones dadas por el profesor, aqui esta el código que aplique para mi programa.
<!DOCTYPE html>
<title>ADIVINA</title>
<head>
<meta charset="UTF-8">
</head>
<meta charset="UTF-8">
<html>
<h1>¿PUEDES ADIVINAR EL NUMERO?</h1>
<script>
function saltarlinea() {
document.write("<br>");
document.write("<br>");
}
function print(text) {
document.write(text);
saltarlinea();
}
numberset = Math.round(Math.random()*10);
numbertyped = parseInt(prompt("Ingrese un numero de 0 a 10: "))
if (numberset == numbertyped) {
print("Usted adivino")
}
else {
print("Usted no adivino, el numero corecto es: " + numberset)
}
</script>
</html>