ITEM
Syntax ITEM number word 
ITEM number list 
 
Explanation

ITEM reports the nth element from the second input where n is the first input, an integer, and the second input is a number, word, or list.

See also MEMBER?.

Examples ITEM 3 "CAT 
Result: T 
ITEM 2 753 
Result: 5 
ITEM 3 [IN AT ON] 
Result: ON 

TopIndex