let quoteSample = "The five boxing wizards jump quickly."; let nonAlphabetRegex = /\w/; // Change this line let result = quoteSample.match(nonAlphabetRegex).length; console.log(result);
1
2
3
4
let quoteSample ="The five boxing wizards jump quickly.";
let nonAlphabetRegex =/\w/;// Change this line
let result = quoteSample.match(nonAlphabetRegex).length;