Take returns the first n element of an array/enumeration. Ex: a = [1,2,3,4,5,0] a.take(3) => [1,2,3] a.take(30) => [1,2,3,4,5,0]