Ruby Loop via le tableau à partir du dernier élément vers l'arrière

array = [1, 2, 3, 4, 5, 6]
array.reverse_each { |x| puts x }
khal