Ruby Sélectionnez les premiers éléments dans le tableau

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

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