Exercise: NUMPY Reshape ArraysConsider the following code:import numpy as nparr = np.array([[1, 2, 3], [4, 5, 6]])newarr = arr.reshape(6)print(newarr)What will be the printed result? [[][1 2 3 4 5 6] [[1 2 3 4 5 6]]] [1 2 3 4 5 6] Submit Answer » ...