Insert the correct slicing syntax to print the following selection of the array:
Every other item from (including) the second item to (not including) the fifth item.
Tip: use the step syntax.
arr = np.array([10, 15, 20, 25, 30, 35, 40])
print(arr@(7))
arr = np.array([10, 15, 20, 25, 30, 35, 40])
print(arr[1:5:2])
arr = np.array([10, 15, 20, 25, 30, 35, 40])
print(arr[1: 5: 2])
arr = np.array([10, 15, 20, 25, 30, 35, 40])
print(arr[1 : 5 : 2])
arr = np.array([10, 15, 20, 25, 30, 35, 40])
print(arr[1 :5 :2])