Ruby -Schleife durch Array vom letzten Gegenstand rückwärts

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