diff --git a/rockpaperscissors.js b/rockpaperscissors.js index 10631e0..0eb02e9 100644 --- a/rockpaperscissors.js +++ b/rockpaperscissors.js @@ -43,7 +43,7 @@ function playRound(humanChoice, computerChoice) { if (humanScore >= 5 || computerScore >= 5) { if (humanScore > computerScore) { - results.textContent = "Congrats, you beat a computer"; + results.textContent = "Congrats, you beat a computer!"; } else { results.textContent = "Well, you lost!"; }