alert("PRACTICA 02 CONDICIONES Y CONCATENACION");
//06. cambiando el mensaje del alert
let intento=prompt("elije un numero entre 1 y 10..");
let numeroSecreto=4;
console.log(intento==numeroSecreto);
if (intento==numeroSecreto){
alert("acerto");
}else{
alert(el numero secreto era.., ${numeroSecreto} y ud ingreso ${intento}
);
}