create a 2x2 numpy array ('a','b')(1,2) (use arr as variable)
create a dictionary with a key ('letter' and 'number') with the values of the numpy array (use dict as variable)
create a dataframe using that dictionary (use data as variable)
arr = np.array([['a','b'],[1,2])
dict = {'letter':arr[0],'number':arr[1])
data = pd.DataFrame(dict)