I have a method that prints out my cards below. I want to create a method that will print out the cards in descending order. I would have to create a new method. I've tried a few things but here I am.
def print_cards
cards.all.each.with_index(1) do |card, index|
puts "#{index}. #{card.name}"
end
end