Create a for loop blockthat iterates through the following list and prints out each item of the list in each iteration.

mylist = [1, 2, 3, 4, 5]

Expected output:

1
2
3
4
5