diff --git a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-intermediate-algorithmic-thinking-by-building-a-dice-game/657e30e116d50c946b189925.md b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-intermediate-algorithmic-thinking-by-building-a-dice-game/657e30e116d50c946b189925.md index ee3b9b4ec7c..da86a124ba8 100644 --- a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-intermediate-algorithmic-thinking-by-building-a-dice-game/657e30e116d50c946b189925.md +++ b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-intermediate-algorithmic-thinking-by-building-a-dice-game/657e30e116d50c946b189925.md @@ -19,7 +19,7 @@ You should use the `includes` method to check if `uniqueNumbersStr` is included assert.match(code, /if\s*\(\s*largeStraightsArr\.includes\(uniqueNumbersStr\)\s*\)\s*{?/); ``` -You should call your `updateRadioOption` with `3` and `30` for the arguments. +You should call your `updateRadioOption` with `4` and `40` for the arguments. ```js assert.match(code, /if\s*\(\s*largeStraightsArr\.includes\(uniqueNumbersStr\)\s*\)\s*{?\s*updateRadioOption\s*\(\s*4\s*,\s*40\s*\)\s*;?\s*}?/);