匹配数字和字母表的字母
let jennyStr = "w3cschool 66666666666";
let myRegex = /[h-s2-6]/gi; // Change this line
let result = jennyStr.match(myRegex);
let jennyStr = "w3cschool 66666666666";
let myRegex = /[h-s2-6]/gi; // Change this line
let result = jennyStr.match(myRegex);