An authentic vowel skewer is a skewer with a delicious and juicy mix of consonants and vowels. However, the way they are made must be just right:
Create a function which returns whether a given vowel skewer is authentic.
is_authentic_skewer("B--A--N--A--N--A--S") ➞ True
is_authentic_skewer("A--X--E") ➞ False
# Should start and end with a consonant.
is_authentic_skewer("C-L-A-P") ➞ False
# Should alternate between consonants and vowels.
is_authentic_skewer("M--A---T-E-S") ➞ False
# Should have consistent spacing between letters.
"-" or letters should return False.