race the output of the following code

Consider the following code:

#create a list named as numbers

numbers = [2, 4, 6, 8, 10]

#this statement uses a slicing statement for getting #elements from indexes 1 to 3 but bot includes the index 3 #and display the new list to user

print (numbers[1:3] )


Answer :