Open the file: DataFileWords.txt which is a list of words. Then using a map, count the number of occurrences of each word and determine how many of each of them there are. Print them out from most common to least common, printing out both the word and the count. Hints: • Your map should probably be O So think of it as • Before you try to print them from most common to least common, just try to find the biggest one and print that out. o IF you get that working, then remove the biggest one from the map. • Then put a while loop around it, so you Print -> remove -> repeat. O