excellent
#challenge - product of all 3 arrays and use ptp method on the new array new_array = np.prod([[array_a],[array_b],[array_c]],axis=0) print(np.ptp(new_array))
I got 214
@robertcliffort2354