import backpackObjectArray from "./components/data.js"; const article = document.querySelector("main"); // map() through the stuff array to make a new stuffItems array. const packList = backpackObjectArray.map((item) => { const content = `

${item.name}

`; console.log("Item is :", item); console.log("Contents are: ", content); const backpack_div = document.createElement("div"); backpack_div.innerHTML = content; return backpack_div; }); packList.forEach((item) => { article.append(item) });