Given a list of words, write a function to return the list of words that have the same letters but are not anagrams of each other.
['listen', 'silent', 'hello', 'hi', 'evil', 'vile']
['listen', 'silent', 'evil', 'vile']
Bot