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