Não estou conseguindo fazer a msg aparecer no console e não estou encontrando o erro. O código está, aparentemente, igual a resposta.
app.js
titulo.innerHTML = ('Hora do Desafio');
function exibirMensagemNoConsole() {
console.log('O botão foi clicado!');
}
index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<header>
<h1></h1>
</header>
<main class="container">
<button onclick="exibirMensagemNoConsole()" class="button">Console</button>
<button onclick="" class="button">Alert</button>
<button onclick="" class="button">Prompt</button>
<button onclick="" class="button">Soma</button>
</main>
<script src="app.js"></script>
</body>
</html>