Review Algorithmic Thinking by Building a Dice Game - Step 9

Tell us what’s happening:

What am doing wrong with adding a new li to my list. And as a side note the instructions call it a ul when the HTML says ol. Thanks

Your code so far

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

/* file: styles.css */

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

const updateScore = (value, id) => {
  score += parseInt(value);
 totalScoreElement.textContent = score;
 scoreHistory.append(`<li>${id} : ${value}</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/128.0.0.0 Safari/537.36

Challenge Information:

Review Algorithmic Thinking by Building a Dice Game - Step 9

It looks like they wanted you to use a concatenation assignment operator to add the new string to the innerHTML of scoreHistory

Thank you for helping make FCC better. Bugs can be reported as GitHub Issues. Whenever reporting a bug, please check first that there isn’t already an issue for it and provide as much detail as possible.