Caros estou com erro neste código:
<meta charset="UTF-8">
<input/>
<button>Compre o meu segredo</button>
<script>
var segredos = [5, 7, 10, 2, 3];
var input = document.querySelector("input");
input.focus ();
var button = document.querySelector("button");
button.onclick = verifica ;
function verifica () {
var achou = false;
for (var posição = 0; posição < segredos.length ; posição ++) {
if(input.value == segredos [posição]) {
alert("Você Acertou");
break
}
}
if (achou == false) {
alert ("Você Errou");
}
input.value = "" ;
input.focus () ;
}