This expression contained a tuple index which was not an integer literal

Q: item (4-3) of (1,"a")
E: This expression contained a tuple index which was not an integer literal.

Calculating an index into a tuple isn’t allowed. You must use a literal:

Q: item 1 of (1,"a")
A: a