Your expression correctly matches all A and a characters in chewieQuote. However the challenge has 2 checks to make sure that your expression realistically only matches “Aaa…”, it should not match " a " alone.
My solution:
let chewieRegex = /A[a]*/; // Change this line
Will not need any flags and looks for instances of “A” which is immediately followed by 0 or more “a”