Yo realice el ejercicio agregando un poco de lo aprendido en clases anteriores para mejorar el programa..
<meta charset="UTF-8">
<h4>Introduce un valor entre 0 - 10</h4>
<input/>
<button>Verificar si acerto con el secreto</button>
<script>
var input = document.querySelector("input");
function verificar() {
var secreto = Math.round(Math.random()*10);
if (parseInt(input.value) == secreto) {
alert("Usted Acerto el Secreto");
}
else alert("Usted Erró, el secreto es: " + secreto);
}
var button = document.querySelector("button")
button.onclick = verificar;
</script>