Choose the right output of the following Python code:
L = [4, 2, 5, 1, 2, 4, 2, 5, 2, 1]
print(L.index(2, 2))
print(L.index(2, 2))
1
0
2
4
3
1
4
6