What does the return value (None) for the extend function indicate.
common_birds = ["chicken", "blue jay", "crow", "pigeon"]
birds_seen = ["sparrow", "green finch", "gold finch"]
print (common_birds.extend(birds_seen))
# returns None
common_birds.extend(birds_seen)
print (common_birds)
# returns the extended list