script.js window.addEventListener("DOMContentLoaded",function() { //Challenge 1: Create a variable scene for the component in the HTML let scene = document.querySelector('a-scene'); //Challenge 2: Create a variable for let dodecahedron = document.creatElement('a-dodecahedron'); //Challenge 3: Change the 's position, radius and color dodecahedron.setAttrobute("color","red", "rotation",{x=45,y=0,z=45},"radius","1"); //Challenge 4: Add the to the scene scene.append.(dodecahedron); }