    def get_most_used_words(words, stopwords):
        valid_words = [word.lower() for word in words if StringHelper.is_valid_word(word, stopwords)]
        return dict(Counter(valid_words).most_common(5))