let quoteSample = "The five boxing wizards jump quickly."; let alphabetRegexV2 = /[a-z]/; // Change this line let result = quoteSample.match(alphabetRegexV2).length; console.log(result);
1
2
3
4
let quoteSample ="The five boxing wizards jump quickly.";
let alphabetRegexV2 =/[a-z]/;// Change this line
let result = quoteSample.match(alphabetRegexV2).length;