userCheck para que se ajuste a las restricciones enumeradas anteriormente. JACK
    testString: 'assert(userCheck.test("JACK"), "Your regex should match JACK");'
  - text: Tu expresión regular no debe coincidir con J
    testString: 'assert(!userCheck.test("J"), "Your regex should not match J");'
  - text: Tu expresión regular debe coincidir con Oceans11
    testString: 'assert(userCheck.test("Oceans11"), "Your regex should match Oceans11");'
  - text: Tu expresión regular debe coincidir con RegexGuru
    testString: 'assert(userCheck.test("RegexGuru"), "Your regex should match RegexGuru");'
  - text: Su expresión regular no debe coincidir con 007
    testString: 'assert(!userCheck.test("007"), "Your regex should not match 007");'
  - text: Tu expresión regular no debe coincidir con 9
    testString: 'assert(!userCheck.test("9"), "Your regex should not match 9");'
```