Cadr

(cadr list) -> value

This is a combination of cdr and car--in that order. First, it performs cdr on the list, and then performs car on the cdr. So:

Example:

>>(cadr '(1 3 5))
:: 3

See Also: car, cdr