// let quoteSample = "Beware of bugs in the above code; I have only proved it correct, not tried it.";
// let vowelRegex = /[aeiou]/ig; // Change this line
// let result = quoteSample.match(vowelRegex); // Change this line
// console.log(result)

// let quoteSample = "The quick brown fox jumps over the lazy dog.";
// let alphabetRegex = /[a-z]/ig; // Change this line
// let result = quoteSample.match(alphabetRegex); // Change this line
// console.log(result)

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


// Only change code below this line
// const chewieQuote = 'Aaaaaaaaaaaaaaaarrrgh!'
// let chewieRegex = /Aa*/g; // Change this line
// // Only change code above this line

// let result = chewieQuote.match(chewieRegex);

let text = "<h1>Winter is coming</h1>";
let myRegex = /<a-h0-9>/g; // Change this line
let result = text.match(myRegex);
console.log(result) 
by