Given an array, return a new array that is a copy of the original.
// input: const a = [1, 2, 3, 4, 5] // output: [1, 2, 3, 4, 5]
/* output */