Not considering validity checks or other error checking, write the one line of linked list-based Stack code to implement Push, assuming Pop removes from the FRONT of the List.
a) list.insert_front(element);
b) list.insert_end(element);
c) list.remove_front();
d) list.remove_end();