Create a for loop blockthat iterates through the following list and prints out each item of the list in each iteration.
for
mylist = [1, 2, 3, 4, 5]
Expected output:
12345