Ruby Seleccione First N Elements de la matriz

array = ['toto','titi','tata','tutu']

array.first(2) # => ['toto', 'titi']
Lioruby