<meta charset="UTF-8">
<script>
function pulaLinha() {
document.write("<br><br>");
}
function mostra(frase) {
document.write(frase);
pulaLinha();
}
var numeroPensado = Math.round(Math.random() * 10);
for (var tentativas = 1; tentativas <= 3; tentativas++) {
var chute = parseInt(prompt("Digite seu chute!"));
if(chute == numeroPensado) {
mostra("Você ACERTOU, o número pensado era " + numeroPensado);
break;
} else {
mostra("Você ERROU!");
}
}
mostra("FIM");
</script>