Create NumPy Array III

Complete the code to create a 2-dimensional array with shape (2,3)
import numpy as np a = np.array([ # add code here
]) print(a.shape) # expected: (2,3)
Python
Setting up Python environment...
Output