diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/regular-expressions/restrict-possible-usernames.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/regular-expressions/restrict-possible-usernames.md index 59da9fb360..cb9b99b8da 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/regular-expressions/restrict-possible-usernames.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/regular-expressions/restrict-possible-usernames.md @@ -98,6 +98,12 @@ Your regex should match `AB1` assert(userCheck.test('AB1')); ``` +Your regex should not match `J%4` + +```js +assert(!userCheck.test('J%4')) +``` + # --seed-- ## --seed-contents--