I have two arrays that look like this
first array
let arr1 = [
  'FS340089',
  'FS350089',
  'FS360089',
  'FS370089',
]
another array
let arr2 = [
  'FS340089',
  'FS350089',
  'FS360089',
  'FS370089',
  'FS380089',
]
I would like to get FS380089 at the output
 
     
     
     
    