@quitya95

#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))

@roywilson9580

I got 214