raphaelpapillon7697 raphaelpapillon7697 08-04-2024 Computers and Technology contestada Given the following code: def add_dog(arr): arr = ['cat', 'mouse', 'fish'] print(arr) arr = [] add_dog(arr) print(arr) What does it print?