funkyFunction
возвращает функцию. Вам нужно немедленно вызвать эту функцию, чтобы она возвратила "FUNKY!"
и получила присвоение theFunk
:
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()();
console.log(theFunk);