I would like to return the nth cdr of a list. For example, I say (nth-cdr 3 \'(a b c d e)) and i would get (c d e) as output. I am not sure where I am
(nth-cdr 3 \'(a b c d e))
(c d e)