Review Algorithmic Thinking by Building a Dice Game - Step 9

Tell us what’s happening:

I’m being told that I need to add the value of the first parameter to my total score. and that my function should update the total score element with the new total score. I believe I am doing that. Can someone take a look and tell me what I am missing?

Your code so far

<!-- file: index.html -->

/* file: styles.css */

/* file: script.js */
// User Editable Region

const updateScore = (selectedValue, achieved) => {
  total += selectedValue;
  totalScore.textContent = total;
  scoreHistory.innerHTML = `<li>${achieved} : ${selectedValue}</li>`
}

// 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/127.0.0.0 Safari/537.36

Challenge Information:

Review Algorithmic Thinking by Building a Dice Game - Step 9

don’t use the total variable here. Use the score variable. (there’s a bug in the hints)

That worked, thank you!

1 Like