Match Characters that Occur Zero or More Times
Summary
- The
*
character is used to match characters that occur zero or more times.
Final Code
// Only change code below this line
let chewieRegex = /Aa*/; // Change this line
// Only change code above this line
let result = chewieQuote.match(chewieRegex);