-----Description-----
This task involves merging two sorted arrays of natural numbers (it is ill defined if inputs aren't sorted.)
-----Input-----
The input consists of two arrays:
a1: A sorted array of natural numbers
a2: A sorted array of natural numbers
-----Output-----
The output is an array:
Returns a new array with all elements from both input arrays (included once and only once)
The resulting array is sorted itself

