HashMap returnValue = new HashMap();
returnValue.put("Bob", getAccount("Bob", 10000));
returnValue.put("Alex", getAccount("Alex", 8400));
returnValue.put("Trish", getAccount("Trish", 18700));
returnValue.put("Pat", getAccount("Pat", 122100));
returnValue.put("David", getAccount("David", 3100));
returnValue.put("Mary", getAccount("Mary", 95200));
return returnValue;