module ApplicationHelper def make_choice_from(array) value = 0 choices = [] array.each do |item| choices << [item, value] value += 1 end choices end end