Match Characters that Occur Zero or More Times problem

Tell us what’s happening:

Please help I am stuck!

Your code so far


let chewieQuote = "Aaaaaaaaaaaaaaaarrrgh!";
let chewieRegex = /Aa*r/i; // Change this line
let result = chewieQuote.match(chewieRegex);

Your browser information:

User Agent is: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/regular-expressions/match-characters-that-occur-zero-or-more-times

From the second test - that is a hint at what you should be attempting to match to pass the challenge

Your regex chewieRegex should match 16 characters.

From the instructions

Your regex does not need flags,

Try reading the instructions again.

Your regex does not need flags

Also you are only matching all the upper and lower "a" characters. So you don’t need ‘r’ in your regex.