Make two methods:
consonants(word) which returns the number of consonants in a word when called.vowels(word) which returns the number of vowels in a word when called."hello".consonants ➞ 3
"hello".vowels ➞ 2
"greatly".consonants ➞ 5
"greatly".vowels ➞ 2
"Smithsonian".consonants ➞ 7
"Smithsonian".vowels ➞ 4a, e, i, o, u.