primes = [2,3,5,7] primes.reject {|x| x%2==0} # => [3,5,7]: reject the even ones
a = ["a", "b", "c", "d", "e", "f", "g", "h"] p a.reject { |x| x < "e" } # => ["e", "f", "g", "h"]