Essa foi minha resolução:
<body>
<h1>Tente adivinhar um número de 1 a 10</h1>
<input type="text">
<button>Clique aqui e veja se acertou</button>
</body>
</html>
<script>
function sorteia() {
return Math.round(Math.random() * 10);
}
function sorteiaNumeros(quantidade) {
var segredos = [];
numero = 1;
while (numero <= quantidade) {
var numeroAleatorio = sorteia();
if (numeroAleatorio !== 0) {
var achou = false;
for (var posicao = 0; posicao < segredos.length; posicao++) {
if (segredos[posicao] == numeroAleatorio) {
achou = true;
break;
}
}
}
if (achou == false) {
segredos.push(numeroAleatorio);
numero++;
}
}
return segredos;
}
var segredos = sorteiaNumeros(4);
console.log(segredos);
var input = document.querySelector("input");
input.focus();
function verifica() {
var achou = false;
for (var posicao = 0; posicao < segredos.length; posicao++) {
if (input.value == segredos[posicao]) {
alert("Você ACERTOU!");
achou = true;
break;
}
}
if (achou == false) {
alert("Você ERROU!!!!");
}
input.value = "";
input.focus();
}
var button = document.querySelector("button");
button.onclick = verifica;
</script>