Function Composition

Recall: If g is a function whose values are acceptable as arguments to f, then the composition of f and g is:
     f(g(x))
Exercise 5.16: Write a procedure that takes two procedures as arguments and returns the procedure that is their composition as a result.
     (define compose	
       (lambda (f g)	
         _______?_______))