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