<meta charset="UTF-8">
<script>
function pulaLinha(){
document.write('<br><br>')
}
function mostra(frase){
document.write(frase)
pulaLinha()
}
var numeroSecreto = Math.round(Math.random() * 10);
console.log(numeroSecreto);
for(var tentativas = 1; tentativas <= 3; tentativas++){
var chute = parseInt(prompt('Digite seu chute!'))
if(numeroSecreto == chute){
mostra('Parabéns você acertou! O número secreto era ' + numeroSecreto)
break;
} else {
mostra('Você errou!')
}
}
</script>