Desafio resolvido com data-attribute, depois de quebrar a cabeça:
const lista = document.querySelector(".lista");
const botoes = document.querySelectorAll("[data-action]");
botoes.forEach((botao) => { botao.addEventListener("click", () => { const acao = botao.dataset.action; if (acao === "mostrar") { lista.style.display = "block"; } else if (acao === "sumir") { lista.style.display = "none"; } }); });