What is the correct syntax for creating a variable that is bound to a list?
my_list = to_list(2, 'apple', 3.5)
my_list = (2, 'apple', 3.5)
my_list = [2, 'apple', 3.5]
my_list = [2, 'apple', 3.5].to_list()