Print each of the attribute for each athlete to System.out. I'd use a different method, like

public void printAthlete(Athlete athlete)
{
String name = athlete.getPlayerName();
String...