xxxxxxxxxx
btnStartGame.addEventListener('click', () =>{
hideElement(divButtons);
showElement(divGame);
const newWord = raffleWords();
const newTabuleiro = drawBoard(newWord);
document.onkeyup = function(evt){
let str = event.key;
console.log(str);
}
});