Review DOM Manipulation by Building a Rock, Paper, Scissors Game - Step 6

Tell us what’s happening:

I am not sure why my code is not passing. I am not seeing any typo’s or syntax issues. Can someone spot the issue and show me. I have been stuck on this for several hours. Its saying my code wont pass because i have to set the playerScore to 0. I did that.

Your code so far

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

/* file: styles.css */

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

function resetGame() {
  playerScore = 0;
  computerScore = 0;
  playerScoreSpanElement.innerText = playerScore
  computerScoreSpanElement.innerText = computerScore
  resetGameBtn.style.display = 'none'
  optionsContainer.style.display = 'block'
  winnerMsgElement.innerText = ''
  roundResultMsg.innerText = ''
};

// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36

Challenge Information:

Review DOM Manipulation by Building a Rock, Paper, Scissors Game - Step 6

Nevermind, i found the issue. I was missing an s in the roundResultsMsg. Its always after i create a post, i finally find the issue.

It is called the rubber duckie effect. It was observed that if you make an attempt to describe the problem to someone, even an inanimate toy like a rubber duckie (or the forum), then you are more likely to see your own problem (from a different perspective).