Discuss the below:
Q: Create a function merge that take two sorted arrays as parameters. The function should create a new array whose size is the sum of the two parameter array lengths. The merge function should then fill in the new array with elements from the two parameters such that the two sorted arrays are merged into one sorted array.