create an iterator for the list 'l1' and assign it to the variable 'iter1' code example
Example: python iterator
pies = ["cherry", "apple", "pumpkin", "pecan"]
iterator = iter(pies)
print(next(iterator))
#prints "cherry" because it's the current one being iterated over