In the case of this function starting from -2 position, it should print [115,43].
def increment(nums):
t = (nums[-2:-4:-2 ])
print(t)
print(increment([43, 90, 115, 500]))
However, the output for this code is just [115], how come?