Get array element by using grep
a = ["a", "b", "c", "d", "e", "f", "g", "h"] p a.grep /[aeiou]/ # => ["a", "e"]