Can't pass the test what am i doing wrong?

Tell us what’s happening:

Your code so far


// example crowd gathering
let crowd = 'P1P2P3P4P5P6CCCP7P8P9';

let reCriminals = /c+/; // Change this line

let matchedCriminals = crowd.match(reCriminals);
console.log(matchedCriminals);

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.4 Safari/605.1.15.

Challenge: Find One or More Criminals in a Hunt

Link to the challenge:
https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/regular-expressions/find-one-or-more-criminals-in-a-hunt

A criminal is represented by the capital letter C.

You were checking only for lowercase c,but you should use capital C…

that’s why you didn’t pass tests…

OMG thanks lol i feel so stupid now XD