#.append() is a function that allows you to add values to a list sampleList.append("Bob") print ("Bob should appear in the list:", sampleList) #The output will be: Bob should appear in the list: ['Bob']