Programmers옹알이 (2)옹알이 (2)Lv. 1Solution export function babblingII(babbling: string[]): number { const isPronounceable = (word: string) => { return !/(aya|ye|woo|ma)\1+/.test(word) && /^(aya|ye|woo|ma)+$/.test(word); }; return babbling.filter(isPronounceable).length; }Programmers옹알이 (2)https://school.programmers.co.kr/learn/courses/30/lessons/133499