funcall

funcall is a built-in function in `C source code'.

(funcall FUNCTION &rest ARGUMENTS)

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).