Keep it simple, please:
HashMap HeyHoLetsGo = new HashMap();
HeyHoLetsGo.put("I", "wanna be your dog");
HeyHoLetsGo.put("Sheena", "is a punk rocker");
HeyHoLetsGo.put("Rudie", "can't fail");
for ( String theKey : HeyHoLetsGo.keySet() ){
System.out.println(theKey + " "+HeyHoLetsGo.get(theKey));
}