Apply ( @@ ) can be used to replace the head List with Sequence, which is the head for a sequence of items as used for arguments.
In[1]:= Range[1, 10, 1]
Out[1]= {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
In[2]:= Range[Sequence @@ {1, 10, 1}]
Out[2]= {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}