How does arr1 + arr2 behave for two compatible NumPy arrays?
arr1 + arr2
It adds corresponding element pairs and returns an array of their sums.
It immediately reduces all values to one grand total.
It concatenates the arrays end to end.
It converts both arrays to Python lists before operating.