diff --git a/guide/english/certifications/javascript-algorithms-and-data-structures/regular-expressions/match-characters-that-occur-zero-or-more-times/index.md b/guide/english/certifications/javascript-algorithms-and-data-structures/regular-expressions/match-characters-that-occur-zero-or-more-times/index.md index f37664ff2d..2df53e1449 100644 --- a/guide/english/certifications/javascript-algorithms-and-data-structures/regular-expressions/match-characters-that-occur-zero-or-more-times/index.md +++ b/guide/english/certifications/javascript-algorithms-and-data-structures/regular-expressions/match-characters-that-occur-zero-or-more-times/index.md @@ -27,3 +27,12 @@ let regexStar = /wo*w/; regexPlus.test(phrase); // returns true regexStar.test(phrase); // returns true ``` + +### Solution: + +```js +let chewieQuote = "Aaaaaaaaaaaaaaaarrrgh!"; +let chewieRegex = /Aa*/; // Change this line +let result = chewieQuote.match(chewieRegex); +``` +