//variables
let numeroSecreto = 2;
let numeroUsuario = prompt("me indicas un numero entre 1 y 10 porfavor:");
console.log(numeroUsuario);
if(numeroUsuario == numeroSecreto){alert("acertaste, el numero es: ${numeroSecreto}");}
else { alert("lo siento, no acertaste el numero");};