The challenge asks us to create a function foo and lexically scope a variable bar.
My solution was
var foo = function(){
var bar;
}
However one of the tests fail. I think the above solution is also right and should be accepted.
Correct me if I am wrong.