import random
phrases = [
"That's what she said!",
"Oh, you!",
"I see what you did there.",
"Hehehe.",
"Nice one!",
"You're on fire!",
"Keep it up!",
"We're all thinking it.",
"You said it, not me!",
"I can't believe you just said that!"
]
phrase = random.choice(phrases)
print(phrase)