Predict the output of the following code fragments:
x = 'one' y = 'two' counter = 0 while counter < len(x): print(x[counter], y[counter]) counter += 1
o t n w e o
Inside the while loop, each letter of x and y is accessed one by one and printed.