41. What is the output of the given code?
counter = 1
while counter < 11
puts counter
counter+=1
end
counter = 1
while counter < 11
puts counter
counter+=1
end