Carte chacun avec index

[:a, :b, :c].each_with_index.map do |item, index|
  # DO THINGS 
end
gritter97