Concat Pandas DataFrame z Numpy Array.

df = pd.concat([df, pd.DataFrame(arr, columns=["C", "D"])], axis=1)
Helpful Hare