##### This exercise is validated if the your_numpy_array is a NumPy array. It can be checked with `type(your_numpy_array)` that should be equal to `numpy.ndarray`. And if the type of is element are as follow. ##### Try and run the following code. ```python for i in your_np_array: print(type(i)) ``` ###### Does it display the right types as above?