Create a for loop that iterates through all the items of the following list and prints out the item if the item is greater than 2.

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

Expected output:

3
4
5