Review Algorithmic Thinking by Building a Dice Game - Step 10

Tell us what’s happening:

Bonjour tout le monde aidez je ny arrive pas . Il me retourne l’erreur suivante :
“When your keepScoreBtn is clicked, the radio options should be reset.”

Your code so far

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

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

keepScoreBtn.addEventListener("click", () =>{
  let selectedValue
  let achieved
    for(let checkedBtn of scoreInputs){
      if(checkedBtn.checked){
        selectedValue = checkedBtn.value
        achieved      = checkedBtn.id
        break;
      }
    }
    if(selectedValue){
      rolls = 0
      round++
      updateScore(selectedValue, achieved)
      resetRadioOptions()
    }else{
      alert("Select an Option")
    }
})

// User Editable Region
/* file: styles.css */

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 10

These are incorrect.

Also please start writing code with semicolons in their proper place. Even though the editor accepts the code without them, it is not proper JavaScript without semicolons.

Merci Mais la reponse ne m’aide pas parce que ça ne me propose pas de voie de resolution .

Please post the new code after removing the two lines I mentioned above. What is the hint you now see?