Interview Guides
Given two sorted integer arrays arr1 and arr2, write a function that returns a new sorted array containing all elements from both arrays. The input arrays are already sorted in non-decreasing order, and duplicate values should be preserved in the result.
0 <= len(arr1), len(arr2) <= 10^5-10^9 <= arr1[i], arr2[i] <= 10^9