See this:
var funkyFunction = function() {
      return function() {
        return "FUNKY!"
      }
   }
var theFunk = funkyFunction(funkyFunction())
I need theFunk variable to be assigned value "FUNKY!" from the inner function but I have no idea how to go about it?
 
     
     
    