Start with the list pets = ["luna", "moose"]. Add "biscuit" to the end of
it using the .append method, then print the whole list.
Expected output:
['luna', 'moose', 'biscuit']
Start with the list pets = ["luna", "moose"]. Add "biscuit" to the end of
it using the .append method, then print the whole list.
Expected output:
['luna', 'moose', 'biscuit']