export default function countVowels(str) {
  // TODO: Return how many vowels (a, e, i, o, u) are in the string
  throw new Error('Not implemented');
}
Run tests to see results.