/* ---------------------------------------------------------- EXERCISE: Replace the "---- Your Code ----" comment with your code. You can use console.log() to write to the output element ---------------------------------------------------------- */ // create an object container var container = {placeholder : null}; // assign a function to a variable var greeting = function(){console.log("Hello!");}; // assign greeting function to container placeholder // ---- Your Code ---- // call greeting through container object // ---- Your Code ---- // function loads another function and executes it function loader(func){ func(); } // execute greeting function through loader function // ---- Your Code ----