The following displays a player along with a stat line(Points, Assists, etc.). For the sake of having to create this for several players, is there any way I simplify this or am I approaching this completely wrong?
public static void main(String[] args) {
LinkedHashMap<String, LinkedList<Double>> chart = new LinkedHashMap<String, LinkedList<Double>>();
LinkedList<Double> stats = new LinkedList<Double>();
stats.add(6.8);
stats.add(11.6);
stats.add(11.6);
chart.put("Micheal Jordan", stats);
for(Map.Entry<String,LinkedList<Double>> entry: chart.entrySet()){
String name = entry.getKey();
LinkedList<Double> number = entry.getValue();
System.out.println(name + " " + number);
}