// Building object class Building { constructor(name, productionRate) { this.name = name; this.productionRate = productionRate; } }