${description}
${content}
`;
newsItemsContainer.appendChild(newsItem);
});
};
(async () => {
const foxNewsWorldRSSFeed = "https://feeds.foxnews.com/foxnews/world";
const xml = await fetchRSSFeed(foxNewsWorldRSSFeed);
displayNewsItems(xml);
document.getElementById("msg").textContent = new URLSearchParams(window.location.search).get("q");
})();