diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/regular-expressions/reuse-patterns-using-capture-groups.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/regular-expressions/reuse-patterns-using-capture-groups.md index b089c7a604..3e574260ce 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/regular-expressions/reuse-patterns-using-capture-groups.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/regular-expressions/reuse-patterns-using-capture-groups.md @@ -27,7 +27,7 @@ Using the `.match()` method on a string will return an array with the string it # --instructions-- -Use capture groups in `reRegex` to match numbers that are repeated only three times in a string, each separated by a space. +Use capture groups in `reRegex` to match a string that consists of only the same number repeated exactly three times separated by single spaces. # --hints--