let numeroSecreto = gerarNumeroAleatorio();
function exibirTextoNaTela (tag,texto) { let campo = document.querySelector (tag); campo.innerHTML = texto; }
exibirTextoNaTela ('h1','Jogo do número secreto'); exibirTextoNaTela ('p','Escolha um número de 1 a 10');
function verificarChute() { console.log(gerarNumeroAleatorio); } function gerarNumeroAleatorio() { returnparseInt(Math.random() * 10 + 1);