removeElement (toRemove) {
            if (this.elements.includes(toRemove)) {
                this.elements.splice(this.elements.indexOf(toRemove), 1);
            }
            if (this.domElements.includes(toRemove)) {