- Create a function that will accept 2 arguments as arrays
- 1st argument should be array with some random numbers in int
- 2nd argument should be array with some random numbers that we want to exclude from 1st array.
- 1st argument array ([1, 2, 3, 4, 1, 2])
- 2nd argument array ([1, 2])
- The final result should be [3, 4]