javascript alert('Bienvenidos al juego del número secreto'); let eleccion = prompt('Elige un número entre 1 y 10');
let numeroSecreto = 4;
if (eleccion == numeroSecreto) { alert('Adivinaste'); }
Cambiando a un dado:
alert('Bienvenidos al juego del Dado'); let acertar = prompt('Elige un número entre 1 y 6');
let numeroSecreto = 3;
if (acertar == numeroSecreto) { alert('Acertaste'); }