Write a function that returns the first n vowels of a string.
firstNVowels("sharpening skills", 3) ➞ "aei"
firstNVowels("major league", 5) ➞ "aoeau"
firstNVowels("hostess", 5) ➞ "invalid"
"invalid" if the n exceeds the number of vowels in a string.