# section_6/part_4/answer.rb # 6-4-array-puts.rb nums = [3, 1, 4, 1, 5] print nums, "\n" nums.each do |n| puts n end