Tell us what’s happening:
I am being stupid today but are my HTML variables not already assigned in the existing declarations like:
const listOfAllDice = document.querySelectorAll(“.die”);
Is there something else expected here?
Your code so far
<!-- file: index.html -->
/* file: styles.css */
/* file: script.js */
// User Editable Region
let isModalShowing = true;
let rolls = 0;
let score = 0,
let total = 0;
let round = 1;
// User Editable Region
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36 Edg/126.0.0.0
Challenge Information:
Review Algorithmic Thinking by Building a Dice Game - Step 1