//Example of the solution to finding all the vowels within a string
function countAllTheVowels(string) {
//Finding all of the vowels
const numberOfVowels = string.match(/[aeiou]/gi).length;
//Returning the result
return numberOfVowels;
}