diff --git a/exercises/practice/anagram/.docs/instructions.append.md b/exercises/practice/anagram/.docs/instructions.append.md index f0a54989..29a3cb70 100644 --- a/exercises/practice/anagram/.docs/instructions.append.md +++ b/exercises/practice/anagram/.docs/instructions.append.md @@ -1,3 +1,7 @@ # Instructions append -As with Isogram, it's worth browsing what data types are already available in the system. Also remember to take the tests step by step and try to build up a solution bit by bit. The debugger can also be your friend, and remember that it's possible to evaluate any expression or variable to better visualise and and understand how it works. \ No newline at end of file +You must return the anagrams in the same order as they are listed in the candidate words. + +As with Isogram, it's worth browsing what data types are already available in the system. +Also remember to take the tests step by step and try to build up a solution bit by bit. +The debugger can also be your friend, and remember that it's possible to evaluate any expression or variable to better visualise and and understand how it works.