What is the space complexity (excluding input) of this function?
int[] CopyArray(int[] arr) { var copy = new int[arr.Length]; Array.Copy(arr, copy, arr.Length); return copy; }
n = 5