Problem in *Match Characters that Occur Zero or More Time*

Tell us what’s happening:
Describe your issue in detail here.
in the Match Characters that Occur Zero or More Times from Regex series in JS part, with entering the correct codes I can’t pass the challenge.

Your code so far


// Only change code below this line
let chewieRegex = /َAa*/; // Change this line
// Only change code above this line

let result = chewieQuote.match(chewieRegex);

Your browser information:

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

Challenge: Match Characters that Occur Zero or More Times

Link to the challenge:

There seems to be a an extra character above or next to the first /. I removed that and it worked for me. Hope this helps.

1 Like

yes, you’re right. it’s a so tiny character that I recognized it now. thanks for your answer!

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.