I would like to show the highest values first, but its showing me the lower first:
songs.entrySet()
     .stream()
     .sorted(Comparator.comparing(Map.Entry::getValue))
     .forEach(songs -> System.out.println(songs.getKey() + " Rate:" + songs.getValue()));
 
    