Easy
Which method would you use to merge two arrays without modifying either of them?
1const array1 = ["apple", "banana"];2const array2 = ["cherry", "date"];34// Your implementation here
1const array1 = ["apple", "banana"];2const array2 = ["cherry", "date"];34// Your implementation here