(list expression1 ... )
The list function creates a list out of expressions supplied as arguments to the function. The function accepts a variable number of expressions.
Examples
: (setq x 3)
3
: (setq y (list 1 2 x))
(1 2 3)
: (setq y '(1 2 x))
(1 2 X)