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 886d6ab5e3..c8fd33610f 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
@@ -47,6 +47,8 @@ tests:
testString: assert(userCheck.test("Z97"));
- text: Your regex should not match c57bT3
testString: assert(!userCheck.test("c57bT3"));
+ - text: Your regex should match AB1
+ testString: assert(userCheck.test("AB1"));
```