//here is the another solution
let myString = "Franklin D.Roosevelt";
let myRegex = /(Franklin|Eleanor)\s.*R(oosevel)t/ig; // Change this line
let result = myRegex.test(myString); // Change this line
// After passing the challenge experiment with myString and see how the grouping works
console.log(result)
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36
Challenge: Regular Expressions - Check For Mixed Grouping of Characters
Link to the challenge: