HELP:Match All Letters and Numbers

Tell us what’s happening:
Can you please tell on how can I combine the regex and the shorthand class /\w+/. I am facing issue in the same. I tried using w as shorthand character class but it didn’t worked out.
Can you please help me in the same?

Your code so far

let quoteSample = "The five boxing wizards jump quickly.";
let alphabetRegexV2 = /[a-zA-Z0-9_]/ig; // Change this line
let result = quoteSample.match(alphabetRegexV2).length;

Your browser information:

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

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/regular-expressions/match-all-letters-and-numbers

\w is the same thing as writing [A-Za-z0-9_]
Why do you want to combine these? :thinking:

Got it.Thanks Ronnehag for the help.Actually,I was trying to take all alphanumeric characters.