async function apiManager() { const apiKey = "2721d1f0de38415b978ddeed5ff2291a"; const topic = "농심"; const apiUrl = `https://newsapi.org/v2/everything?q=${topic}`; try { const response = await fetch(`${apiUrl}&apiKey=${apiKey}`); if (!response.ok) { throw new Error(`HTTP error! Status: ${response.status}`); } const data = await response.json(); const newsList = document.getElementById("news-list..