ES6 Classes & Constructors

How would you set both width and height at once with this class?
class Rectangle {
  constructor(width, height) {
    this.width = width;
    this.height = height;
  }
  
  get area() {
    return this.width * this.height;
  }
  
  set dimensions([width, height]) {
    this.width = width;
    this.height = height;
  }
}
Next Question (24/28)