et chewieQuote = "Aaaaaaaaaaaaaaaarrrgh!";
let chewieRegex = /Aa*/; // Change this line
let result = chewieQuote.match(chewieRegex);
console.log(result);
Aaaaaaaaaaaaaaaa
Guys please help me out on this… I passed the test but I still don’t get the concept at all. I tried testing it myself by putting only an “A” in there and it returned “A” in the console so i was like “alright… cool” and then i put a SMALL “a” and it returned nothing… this is baffling guys especially as why the answer is “Aa”? I’m so confused can someone pls assist me on this.