Vowel Count

Ruby

Return the number (count) of vowels in the given string.

We will consider a, e, i, o, and u as vowels for this challenge.

The input string will only consist of lower case letters and/or spaces.

Create a method called get_count that accepts a string.

def get_count(inputStr) end
< >