There is a mistake under the accessors section. ``` Jedi.prototype.set: function(key, val) { this[key] = val; }; ``` Should read ``` Jedi.prototype.set = function(key, val) { this[key] = val; }; ```