Explain test case for 3 Sum

Given array nums = [-1, 0, 1, 2, -1, -4],
Mentioned Solution :: [
[-1, 0, 1],
[-1, -1, 2]
]

I want to know that can I have this as a solution??
[
[-1, 0, 1],
[-1, 2. -1]
]

Does Order matter?

Comments (1)