Hello I am fairly new to Ruby still learning. The goal for this code is to return a boolean given a string. This method should return true if all vowels are in the string, not in a certain order but only vowels should be in string. False otherwise. Ex: str("hello") => false. str("oii") => true. I have not made any progress other than what's below.
def only_vowels(str)
vowels = "aeiou"
str.all? #no idea what to use
end