hola he visto que algunos tiene problema al momento de correr su codigo, asi que les dejo el mio
<script>
function imprimir(frase){
document.write(frase);
document.write("<br>");
}
//var secreto= Math.round(Math.random()*10);
secreto = [3,5,7,9];
var input=document.querySelector("input");
function verificar(){
if(parseInt(input.value) == secreto[Math.round(Math.random()*3)]){
alert("usted acertó")
}
else{
alert("usted erro")
}
input.value = "";
input.focus();
}
var button=document.querySelector("button");
button.onclick=verificar;
</script>