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