(nth index LIST)
(setq cell '("value1" "value2" "value3" "value4")) (nth 0 cell) #=> "value1" (nth 3 cell) #=> "value4" (nth 5 cell) #=> nil