Practice: Maps

Practice: Maps#

Question #1: Write a method evenValues that take a Map<String, Integer> argument. It will print out every Key that has an even value. As a BONUS, output the results with the keys ordered alphabetically (case-insensitive). Note that you cannot assume that the map has its keys in sorted order.