Ruby - Enumerable - each_with_index

  • + 1 comment

    Whats wrong with my code?

    def skip_animals(animals, skip)
      # Your code here
        arr=Array.new
       animals.each_with_index { |item, index| arr.push("#{index+1}:#{item}") if index>=skip } 
        arr
    end