const abaTranslate = sentence => sentence.replace(/[aeiou]/ig, "$&b$&"); console.log(abaTranslate("Cats and dogs")); // returns "Cabats aband dobogs"