userCheck чтобы он соответствовал ограничениям, перечисленным выше. JACK
    testString: 'assert(userCheck.test("JACK"), "Your regex should match JACK");'
  - text: Ваше регулярное выражение не должно совпадать с J
    testString: 'assert(!userCheck.test("J"), "Your regex should not match J");'
  - text: ''
    testString: 'assert(userCheck.test("Oceans11"), "Your regex should match Oceans11");'
  - text: Ваше регулярное выражение должно соответствовать RegexGuru
    testString: 'assert(userCheck.test("RegexGuru"), "Your regex should match RegexGuru");'
  - text: ''
    testString: 'assert(!userCheck.test("007"), "Your regex should not match 007");'
  - text: Ваше регулярное выражение не должно совпадать 9
    testString: 'assert(!userCheck.test("9"), "Your regex should not match 9");'
```