You are given an array nums of n integers. Return an array of all the unique quadruplets [nums[a], nums[b], nums[c], nums[d]] such that:
- 0 <= a, b, c, d < n
- a, b, c, and d are distinct.
- nums[a] + nums[b] + nums[c] + nums[d] == target
- You may return the answer in any order.
The first line of the test case input is the array, and the second line of the input is the target.