Combining Message Fragments

In World of Software Engineering, the quest system currently stores pieces of messages separately.
These message fragments must be combined correctly to rebuild the final quest log entries.
Each final message should appear on its own line.
Your Task:
Use string concatenation to correctly assign values to:
• quest_line_one → must include part_one and part_two
• quest_line_two → must include part_three and part_four
Do not modify the quest fragments above.
Use string concatenation to correctly assign values to:
• quest_line_one → must include part_one and part_two
• quest_line_two → must include part_three and part_four
Do not modify the quest fragments above.
Rebuild the quest log
part_one = "Bounty on " part_two = "Garrick Padfoot" part_three = "Reward: " part_four = "Tapered Pants" # Don't touch above this line quest_line_one = quest_line_two = # Don't touch below this line print(quest_line_one) print(quest_line_two)