<meta charset="UTF-8">
<h1>PROGRAMA JUEGO DE ADIVINACION </h1>
<script>
function saltarLinea() {
document.write("<br>");
document.write("<br>");
document.write("<br>");
}
function imprimir(frase) {
document.write(frase);
saltarLinea();
}
function sorteo(num) {
return numeroPensado = Math.round(Math.random() * num);
}
var numeroPensado = sorteo(5)
var numeroIntroducido = parseInt(prompt("Introduce un número entre el 0 y 5"))
console.log(numeroIntroducido)
if (numeroIntroducido != numeroPensado) {
imprimir("Número incorrecto, el número era " + numeroPensado)
} else {
imprimir("Acertaste")
}
</script>