``` set: function (value) { if (value <= this.y) { this.height = 0; } else { this.height = (this.y - value); } } ``` This should be `this.height = value - this.y;`. The rectangle's 'right' property is correct