https://github.com/ArnaudFgr/ruby_academy/blob/94b716de4c5ea74e2001447d912210c03bc23aef/jeu.rb#L125-L129
Comme juste au dessus, il est possible de se simplifier la vie avec le each_with_index
:
monde.ennemis.each_with_index do |ennemi, i|
puts "#{i + 2} - Attaquer #{ennemi.info}"
end