0 / 60 seg.

Consider the following class declaration. What is the correct way to create an instance of this class?

class Rectangle {
  constructor(width, height) {
    this.width = width;
    this.height = height;
  }
  calculateArea() {
    return this.width * this.height;
  }
}