public class League { String name; Team[] teams; public League(String n) { name = n; teams = new Team[8]; // Doesn’t make any Team objects } // This specifies the appearance of the League public String toString() { return ("The " + name + " league"); } }