When using Redis, the function below returns a promise to the count variable ```js count() { let count = this.store.get(this.key) if (typeof count === 'undefined') { return 0 } return count } ```