Bom dia, Estou com um problema nessa atividade, consegui executar ela mas antes da minha Tag
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<div id = "tabela"></div>
<script>
let funcionarios = [
{
"nome": "Douglas",
"endereco" : "Rua da esquina, 123",
"salario" : "4500"
},
{
"nome": "Felipe",
"endereco" : "Rua da virada, 456",
"salario" : "5000"
},
{
"nome": "Silvio",
"endereco" : "Rua da aresta, 789",
"salario" : "6000"
}
];
let tabelaHtml = `<table>
<thead>
<tr>
<th>Nome</th>
<th>Endereço</th>
<th>Salário</th>
</tr>
</thead>
<tbody>
${
funcionarios.map((f) => `
<tr>
<td>
${f.nome}
</td>
<td>
${f.endereco}
</td>
<td>
${f.salario}
</td>
</tr>
`)
}
<tbody>
</table>
`;
document.querySelector('#tabela').innerHTML = tabelaHtml;
</script>
</body>
</html>