pirates3042 pirates3042 02-01-2023 Computers and Technology Answered Considering the following code: x = [1,0,6,3] y = [5,8,1,2] for i in range(len(x)): print("(" + str(x[i]), + "," + str(y[i]) + ")") this code prints out (x,y) coordinate pairs. it is an example of using ______________ arrays.