def random_feed(): user = random.choice(user_list) content = " ".join(random_name(10)) feed = Feedback.create(user=user, content=content) return feed