Given 3 arrays, return a new array that is the concatenation of the 3 arrays.
// input: const a = [1, 2, 3], b = [4, 5, 6], c = [7, 8, 9] // output: [1, 2, 3, 4, 5, 6, 7, 8, 9]
/* output */