Githup repo with completed solution code Given an array of strings, return a new array containing all the strings with any anagrams collected together. When I saw this challenge, I thought it might be a good application for one of my favorite problem-solving data structures: the lowly hash table. In JavaScript, hash tables can be used…