# List with possible right answers
right_answers = ["Eibe", "Fichte", "Kiefer", "Lärche"]
# List with possible wrong answers
wrong_answers = ["Linde", "Buche", "Eiche", "Birke", "Ahorn"]
# Select two correct answers
x = dynexite.sample(right_answers, 2)
# Select three wrong answers
y = dynexite.sample(wrong_answers, 3)