function game {
for (let i = 0; i > 5; i++)
playRound(computerSelection, playerSelection)
}
This function is returning an error where it is expecting an "(" instead of a "{" after defining the function.
You must write "()":
function game() {
for (let i = 0; i > 5; i++){
playRound(computerSelection, playerSelection)
}
}