const continentList = document.getElementById("continent-list"); fetch("https://countries.trevorblades.com/", { method: "POST", body: JSON.stringify( { query: "", // Fill in Query here "operationName": "allContinents" }), headers: { "Content-Type": "application/json" } }).then(response => response.json()).then(({ data }) => { const continents = data.continents; for (const continent of continents) { const newListItem = document.createElement("li"); newListItem.innerHTML = ` ${continent.name} `; continentList.append(newListItem); } });