Tell us what’s happening:
I am getting an element saying that :When your keepScoreBtn is clicked, the score should be updated in the totalScoreElement text.
Your code so far
<!-- file: index.html -->
/* file: styles.css */
/* file: script.js */
// User Editable Region
keepScoreBtn.addEventListener('click', () => {
const chosenInput = scoreInputs.find((input) => input.checked);
if (chosenInput) {
const chosenValue = chosenInput.value;
const chosenId = chosenInput.id;
updateScore(chosenValue, chosenId);
resetRadioOptions();
} else {
alert('Please select an input');
}
})
// 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/131.0.0.0 Safari/537.36
Challenge Information:
Review Algorithmic Thinking by Building a Dice Game - Step 10