Why are you not utilizing Math.max in your max filter? ``` javascript function maxFilter($window) { return function (collection) { return $window.Math.max.apply(Math, collection); }; } ```