If a function signature contains three parameters, for which of them may the splat operator be used?
The third parameter
Correct:
The third parameter
Explanation :
Arrays and Traversable objects can be unpacked into argument lists when calling functions by using the ... operator. This is also known as the splat operator in other languages, including Ruby.