Create a function which validates whether a 3 character string is a vowel sandwich. In order to have a valid sandwich, the string must satisfy the following rules:
is_vowel_sandwich("cat") ➞ true
is_vowel_sandwich("ear") ➞ false
is_vowel_sandwich("bake") ➞ false
is_vowel_sandwich("try") ➞ falsefalse if the word is not 3 characters in length.