Array Methods Exercise
Create a new JavaScript file and put these two arrays at the beginning. You will write a single function that performs many operations on them. var fruit = ["banana", "apple", "orange", "watermelon"]; var vegetables = ["carrot", "tomato", "pepper", "lettuce"]; After every command, use console.log() to inspect your arrays. A good way