Tell us what’s happening:
Is there a bug in the challenge? I know this is right! I made it pass with regex101, included the other examples. It does not work for the other examples. And it’s still not working.
Your code so far
let chewieQuote = "Aaaaaaaaaaaaaaaarrrgh!";
let chewieRegex = /^a*/gi; // Change this line
let result = chewieQuote.match(chewieRegex);
console.log(result)
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Safari/537.36
.