diff --git a/curriculum/challenges/english/16-the-odin-project/top-build-a-rock-paper-scissors-game/build-a-rock-paper-scissors-game.md b/curriculum/challenges/english/16-the-odin-project/top-build-a-rock-paper-scissors-game/build-a-rock-paper-scissors-game.md index d31a63c9495..4716df57cdc 100644 --- a/curriculum/challenges/english/16-the-odin-project/top-build-a-rock-paper-scissors-game/build-a-rock-paper-scissors-game.md +++ b/curriculum/challenges/english/16-the-odin-project/top-build-a-rock-paper-scissors-game/build-a-rock-paper-scissors-game.md @@ -166,7 +166,7 @@ assert.match(playGame(), /You (win|lose) the game!/); ## --seed-contents-- ```js -const hand = ['rock', 'paper', 'scissor']; +const hand = ['rock', 'paper', 'scissors']; ``` ```html