def get_negative_comments(self, cluster):
        top5_negative_comments = cluster.separate_comments()[1][0:5]
        return list(
            map(lambda comment: dict([(comment.disagree, comment.content)]), top5_negative_comments)