This is my array and custom method to reverse an array output without using the reverse method. not sure where it broke, tried running it in console, no dice.
numbers = [1, 2, 3, 4, 5, 6]def reversal(array) do |item1, item2| item2 <=> item1endp reversal(numbers)