userCheck to fit the constraints listed above.
JACK
    testString: assert(userCheck.test("JACK"), 'Your regex should match JACK');
  - text: Your regex should not match J
    testString: assert(!userCheck.test("J"), 'Your regex should not match J');
  - text: Your regex should match Jo
    testString: assert(userCheck.test("Jo"), 'Your regex should match Jo');
  - text: Your regex should match Oceans11
    testString: assert(userCheck.test("Oceans11"), 'Your regex should match Oceans11');
  - text: Your regex should match RegexGuru
    testString: assert(userCheck.test("RegexGuru"), 'Your regex should match RegexGuru');
  - text: Your regex should not match 007
    testString: assert(!userCheck.test("007"), 'Your regex should not match 007');
  - text: Your regex should not match 9
    testString: assert(!userCheck.test("9"), 'Your regex should not match 9');
  - text: Your regex should not match A1
    testString: assert(!userCheck.test("A1"), 'Your regex should not match A1');
  - text: Your regex should not match BadUs3rnam3
    testString: assert(!userCheck.test("BadUs3rnam3"), 'Your regex should not match BadUs3rnam3');
```