Which syntax correctly creates a variable that is bound to a tuple?
my_tuple = [2, 'apple', 3.5]
my_tuple = (2, 'apple', 3.5)
my_tuple [2, 'apple', 3.5].tuple() %D
my_tuple tup(2, 'apple', 3.5) %D