202. Given: NumberNames nn = new NumberNames(); nn.put("one", 1); System.out.println(nn.getNames()); Place the code into position to create a class that maps from Strings to integer values. The result of execution must be [one]. Some options may be used more than once. public class NumberNames{ private HashMap< Place here , Place here > map = new HashMap< Place here , Place here Place here ; 

