The problem did not state that the array of sixteen numbers were sequential or started at one... let's created a solution that works for any 16 numbers.
##########
# Method 1 - Store chunks of 4 and print at the end
##########
a = (1..16).to_a
b = []
a.each do |item|
b << [] if b.size == 0
b << [] if b[-1].size == 4
b[-1] << item
end
# choose your desired printing method
print b
b.each{|c| puts c.join(",")}
##########
# Method 2 - print the chunks as they are encountered
##########
# Note: "p" was specifically chosen over "print" because it returns the value printed instead of nil.
# If you use a different printing function, make sure it returns a value otherwise the 'b' array will not clear.
# Note: This implementation only prints out all array entries if a multiple of 4
# If 'b' contains any items outside the loop, they will not be printed
a = (1..16).to_a
b = []
a.each do |item|
b << item
b = [] if b.size == 4 and puts b
end
# Note: This implementation will print all array elements, even if number of elements is not multiple of 4.
a = (1..16).to_a
b = []
a.each do |item|
b = [] if b.size == 4 and p b
b << item
end
p b