const countVowels = str => (str.match(/[aeiou]/gi) || []).length; module.exports = countVowels;