Start with an empty list called pets.
pets
Use append() to add these 3 animals to the list: "cat", "dog", and "fish".
append()
"cat"
"dog"
"fish"
Then print the length of the list, followed by each pet on its own line.