If you open a file using "w" (write) as the second argument, a new empty file will be created, or an existing file with the same name will be erased.
If you want to add content to an existing file you should use "a" (append) modifier.
Add elements from the "zoo" list to the "output.txt".