Searches a list for an occurrence of an expression and returns the remainder of the list, starting with the first occurrence of the expression
(member expr lst)
A list; otherwise nil, if there is no occurrence of expr in lst.
Command: (member 'c '(a b c d e))
(C D E)
Command: (member 'q '(a b c d e))
nil