</html>
<script>
var secreto = Math.round(Math.random()*10);
var input = document.querySelector("input");
function veficar (){
if (parseInt(input.value) == secreto ){
alert("Acerto el numero");
}
else{
alert("Erro el numero")
}
input.value ="";
input.focus();
}
var button =document.querySelector("button");
button.onclick = veficar;
</script>