const chocolateContainer = document.querySelector(".cupcakes"); const notesForEmma = { noteOne: "", noteTwo: "", noteThree: "", noteFour: "", noteFive: "", noteSix: "", noteSeven: "", noteEight: "", noteNine: "", noteTen: "", noteEleven: "", noteTwelve: "", }; for (let i = 0; i < 3; i++) { for (let j = 0; j < 4; j++) { const tile = document.createElement("div"); tile.classList.add("cupcake"); tile.style.height = "14vh"; tile.style.width = "7vw"; chocolateContainer.appendChild(tile); } }