"Thursday" and "Friday".
2. Correct the typo in "Wendesday" to "Wednesday" using the days list.
3. Print the list to ensure the change has been made.
Right Answer:
# Step 1
days = ["Monday", "Tuesday", "Wendesday", "Thursday", "Friday"]
# Step 2
days[2] = "Wednesday" # Correcting the typo
# Step 3
print(days) # Output: ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday']