The hint is telling you what is wrong. Have you compared the name of the variable that the hint is telling you about with the one you used in your code? Do they match?
The hint says " Your showResults function should update the roundResultsMsg with the result of the round." I tried adding an s I realised was missing in the roundResultsMsgElement.innerHTML but alas, its still not working
You have updated the innerText of computerScore and playerScore. But you aren’t updated that variables to the initial value, before updating the innerText.
hint: check the variables declaration lines , where you declared it both the first time.
Actually you re calling getRoundResults in roundResultMsgElement at the end.
that function update scores so what you re doing here is setting innerhtml of player score computer score before updating them. you should update roundResultMsgElement first then update user and computer score.
hey @iamlamino your response was really helpful. I had the same exact issue, my code was identical, and tried troubleshooting before i read through the entire thread to see if i could figure it out by myself. It made sense once you cued the order!! thank you so much!