2. Use a for loop to create a new list that duplicates the items in the fruits list. The result should be ["apple", "apple", "banana", "banana", "cherry", "cherry"]
Right Answer:
fruits = ["apple", "banana", "cherry"]
new_list=[]
for i in fruits:
new_list.append(i)
new_list.append(i)
print(new_list)