ES6 Classes & Constructors

What will Counter.getCount() return after creating two Counter instances?
class Counter {
  static count = 0;
  
  constructor() {
    Counter.count++;
  }
  
  static getCount() {
    return Counter.count;
  }
}
Next Question (16/28)