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