What im not doing right TWO

I WOULD LIKE TO KNOW WHAT IM DOING WRONG

let myRegex = /[^0-9 aeiou]/ig;


let quoteSample = "3 blind mice.";
let myRegex = /[^0-9 aeiou]/ig; // Change this line
let result = quoteSample.match(myRegex); // Change this line

console.log(result)

Your browser information:

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

Challenge: Match Single Characters Not Specified

Link to the challenge:

3 posts were merged into an existing topic: What im not doing right

Please do not create duplicate topics for the same challenge/project question(s). This duplicate topic has been unlisted and merged with the other one.

Thank you.