public void display() {
   System.out.println("Latest score is:");
   System.out.println(
       homeTeam + " (HOME) " + homeGoals + " - " + awayTeam + " (AWAY) " + awayGoals);
   System.out.println("Goals:");
   for (Scorer scorer : scorers) scorer.display();
 }