let numeroSecreto = gerarNumeroAleatorio();
console.log(numeroSecreto);
let tentativas = 1;
function exibirTextoNaTela(tag, texto) {
let campo = document.querySelector(tag);
campo.innerHTML = texto;
}
function mensagemInicial(){
exibirTextoNaTela('h1', 'Jogo do numero');
exibirTextoNaTela('p', 'Escolha entre 1 a 10');