Function: funcall

Call first argument as a function, passing remaining arguments to it.
Return the value that function returns.
Thus, (funcall 'cons 'x 'y) returns (x . y).

(fn FUNCTION &rest ARGUMENTS)