The program below creates a list of 5 pet names. Add print() statements as shown in the following steps to print parts of the list.

Print the entire list by passing the variable name into print()
Print the first element in the list by using square brackets and the first element index number
Print the last element in the list by using square brackets and the last element index number
Print the middle three elements in the list by specifying a range in square brackets
The following example demonstrates the expected program output.

('Chewy', 'Yakker', 'RageCat', 'Mr. Barkey', 'Furball')
Chewy
Furball
('Yakker', 'RageCat', 'Mr. Barkey')

petNames = ("Chewy","Yakker","RageCat","Mr. Barkey","Furball")

petNames = ("Chewy","Yakker","RageCat","Mr. Barkey","Furball")

print(petNames)
print(petNames[0])
print(petNames[4])
print(petNames[1:4])