Write a function that takes two arrays of strings, sorts each array individually in ascending order, and then merges them into a single sorted array? function solve( a, b ){ //write your code here } Login to Submit