xxxxxxxxxx
for counter in 1..5
puts "iteration #{counter}"
end
#=> iteration 1
#=> iteration 2
#=> iteration 3
#=> iteration 4
#=> iteration 5
xxxxxxxxxx
# rubocop recommended approach
(0..5).each do |i|
puts "Inside loop i = #{i}"
# put your code for loop here
end