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

Tell us what’s happening:

this step says the function should return the correct message based on who wins the round. but all messages are correct.

Your code so far

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

/* file: styles.css */

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

function getRoundResults(userOption) {
  const computerResult = getRandomComputerResult();
  
  if (hasPlayerWonTheRound() === true) {
    playerScore++;
    return `Player wins! ${userOption} beats ${computerResult}`;
  } else if (hasPlayerWonTheRound() === false) {
    computerScore++;
    return `Computer wins! ${computerResult} beats ${userOption}`;
  }else {
    return `It's a tie! Both chose ${userOption}`;
  }
}

console.log(getRoundResults("Rock"));
console.log("Player Score: ", playerScore, "Computer Score: ", computerScore);

// 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 DOM Manipulation by Building a Rock, Paper, Scissors Game - Step 3

check hasPlayerWonTheRound function, does it take arguments?