si funciona lo juro
<meta charset="UTF-8">
<h1>PROGRAMA CALCULAR LOS PUNTOS DEL EQUIPO </h1>
<script>
function saltarLinea() {
document.write("<br>");
document.write("<br>");
document.write("<br>");
document.write("<hr>");
document.write("<br>");
}
function imprimir(frase) {
document.write("<big>" + frase + "</big>");
saltarLinea();
}
var numeroPensado = Math.round(Math.random()*10);
var numeroLanzado = parseInt(prompt("Ingrese un número entre 0 y 10 "))
if (numeroPensado == numeroLanzado) {
imprimir("usted acerto " )
}
else {
imprimir("usted erro, el numero pensado era " + numeroPensado)
}
</script>