Match Single Character with Multiple Possibilities=unable to pass this test

Tell us what’s happening:

I am not passing this test, please help.Thanks so much

let quoteSample = “Beware of bugs in the above code; I have only proved it correct, not tried it.”;

let vowelRegex = /[aeiou]gi/; // Changed

let result = quoteSample.match(vowelRegex); // Changed

Your code so far


let quoteSample = "Beware of bugs in the above code; I have only proved it correct, not tried it.";
let vowelRegex = /[aeiou]gi/; // Changed
let result = quoteSample.match(vowelRegex); // Changed

Your browser information:

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

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/regular-expressions/match-single-character-with-multiple-possibilities

Make sure your flags come after the last slash.

Done, oh that was my careless mistake. thanks so much