(car (cdr '(1 2 3 4 5)) equivalent to the expression below

Which of the following is equivalent to the expression below?

    (car (cdr '(1 2 3 4 5))

   
    Answers:
    A.
    (cadr '(1 2 3 4 5))
   
    B.
    (caddr '(1 2 3 4 5))
   
    C.
    (cdar '(1 2 3 4 5))
   
    D.
    (cacdr '(1 2 3 4 5))

Answer. A.