Specify Only the Lower Number of Matches

Tell us what’s happening:

My code looks correct to me and is working on regex101.com, but it’s failing at 2 random intervals in the tests.

Your code so far


let haStr = "Hazzzzah";
let haRegex = /Haz{4,}ah/g; // Change this line
let result = haRegex.test(haStr);

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36.

Link to the challenge:

Here’s a screenshot of the match in regex101:

It works for me if you remove the g!

Thanks! I guess the global flag isn’t necessary, but why is it failing with it?

I’m having the same issue.