Loops-and-Iterations-Exercise-1 x = [1, 2, 3, 4, 5] x.each do |a| a + 1 end This code had no output to display the value of 'a'. Therefore, when the value of a was changing it was not known by the user.