private static String playerInfo(BaseballCard baseballCard) {
   return "Player: "
       + baseballCard.getName()
       + " Manufacturer: "
       + baseballCard.getManufacturer()
       + " Year: "
       + baseballCard.getYear()
       + " Dimensions(x and y) "
       + baseballCard.getSizeX()
       + " "
       + baseballCard.getSizeY()
       + " Price: "
       + baseballCard.getPrice();
 }