I've read the MDN:Scope document and other resources but feel genuinely stuck.
var funkyFunction = function() {
return function() {
return "FUNKY!"
}
}
// We want to set theFunk equal to "FUNKY!" using our funkyFunction.
// NOTE: you only need to modify the code below this line.
var theFunk = funkyFunction()
theFunk()