Read the code carefully
# nums[1:-1:2] = items from index 1 to -1 (exclusive), step 2
# Indices: 0:10, 1:20, 2:30, 3:40, 4:50, 5:60
# Range 1 to -1 → indices 1..4 inclusive → step 2 → indices 1, 3
print([20, 40])
What will the program print? Write here: