lindex — Return the Nth element of a list
lindex list index
lindex
list
index
The lindex command takes a list and an index number as arguments, and return's the index'th element of the list.
puts [lindex {a b c} 2]
Produces:
c