Which of these list comprehensions will create a list equal to desired_list?
my_list [5, 10, -2,8,20]
desired_list = [10, 8, 20]
[i for i in my_list if i > 10]
[i for i in my_list if i > 5]
[i for i in my_list]
[i+5 for i in my_list]