prev() {
        const i = this.array.indexOf(this.current);
        this.current = this.array[i - 1];
        if (this.current === this.array[0]) {
            return {done: true};