let str = '7hello';
let strRegex = /^[a-z]/;
let outcome = str.match(strRegex);
console.log(outcome);
When I run this in repl.it the output is null, but isn’t that wrong? I wanted to check to see if the beginning of the string had something other than a letter. I expected ‘7’.