This is inverse operation of select. If block return false add item to array.
[1,2,3,4].reject {|n| n%2==0}
> [1, 3]
Like select method with inverse.