Insert the correct slicing syntax to print the following selection of the array:
Everything from (including) the third item to (not including) the fifth item.
arr = np.array([10, 15, 20, 25, 30, 35, 40])
print(arr@(5))
arr = np.array([10, 15, 20, 25, 30, 35, 40])
print(arr[2:5])
arr = np.array([10, 15, 20, 25, 30, 35, 40])
print(arr[2: 5])
arr = np.array([10, 15, 20, 25, 30, 35, 40])
print(arr[2 : 5])
arr = np.array([10, 15, 20, 25, 30, 35, 40])
print(arr[2 :5])