I have a problem with this exercise:
# Loop through the letters of the variable 'summer_word' from above
# Concatenate the consonants from 'summer_word' and answer with the new word.
summer_word = "music"
Tip: Create a string that contains consonants and check if each letter is in it.
I now how to loop through the letters in the word, but i can't figure out how to take out the consonants.