# Instructions An anagram is a rearrangement of letters to form a new word. Given a word and a list of candidates, return the sublist of anagrams of the given word from the candidates. ["Read more about Anagrams on Wikipedia"](https://en.wikipedia.org/wiki/Anagram) The objectives are: - Write a function that takes a word as the left argument, and a list of candidate words as the right argument, and returns a list of zero or more matching anagrams from the list of candidates. - Run the test suite and make sure that it succeeds. - Submit your solution and check it at the website.