Build a Rock, Paper, Scissors Game - Step 14

Tell us what’s happening:

My resetGame function is not setting the playerScore to 0. Oh well! HELP!

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;
  computerSoreSpanElement.innerText = computerScore;

resetGameBtn.style.display= "none";
optionsContainer.style.display = "block";

  winnerMsgElement.innerText = "";
  roundResultsMsg.innerText = "";
}

// 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/137.0.0.0 Safari/537.36 Edg/137.0.0.0

Challenge Information:

Build a Rock, Paper, Scissors Game - Step 14

NEVER MIND I FOUND MY ERROR. MISPELLED SCORE!