# proc.rb x = ["zeroth", "first", "gaius baltar"] n = 0 x.each do |e| puts "The #{n}th entry is #{e}" n += 1 end