alert('Boas vindas ao jogo do número secreto');
let numeroSecretoMaximo = 10000
let numeroSecreto = parseInt(Math.random() * numeroSecretoMaximo + 1);
let chute;
let tentativas = 1;
while (chute != numeroSecreto){
chute = prompt(`Escolha um número entre 1 e ${numeroSecretoMaximo}`);
if(chute == numeroSecreto){
break;
}else{
if(chute > numeroSecreto){
alert(`O número secreto é menor que ${chute}`);
}
else{
alert(`O número secreto é maior que ${chute}`);
}
tentativas++;
}
}
let palavraTentativa = tentativas > 1 ? 'tentativas' : 'tentativa';
alert(`Acertou o (${numeroSecreto}) com ${tentativas} ${palavraTentativa}!!!`);