class RobotHQ { private String address; private Robot president; private Robot secretary; private Song3 anthem; // TODO: add a field for `members`, and update public RobotHQ( String _address, Robot _president, Robot _secretary, Song3 _anthem ) { this.address = _address; this.president = _president; this.secretary = _secretary; this.anthem = _anthem; } /** @return an army of `n` evil robots, all in the shape of ibarland. */ public static Robot[] makeRobotArmy(int n) { Robot[] soldiers = new Robot[n]; for (int i=0; i