0 / 60 seg.

What is the result of the following code?

class Car {
  constructor() {
    this.type = 'Car';
  }
  static brand() {
    return 'Generic';
  }
}
console.log(Car.brand());