```js getFPS: function(){ return this.deltaTime > 0 ? 1000 / this.deltaTime : 0; if(this.deltaTime){ // <--- this code never gets executed :) return 1000 / this.deltaTime; } }, ```