// Page 246 public class Prog_15_2 { public static void main(String[] args) { ListNode he = new ListNode("Jon Smith", null); ListNode test = new ListNode(93, null); String name = he.getData(); int score = test.getData(); System.out.println(name + " got a score of " + score); } }