const featuredHelper = document.querySelector("#featuredHelper") async function loadFeatured() { const response = await fetch(`bananas.json`); if (!response.ok) { featuredHelper.innerHTML = `
Oops! Failed to fetch featured projects...
` throw new Error("Failed to fetch featured projects JSON"); } }