Check out example codes for "ruby merge array unique". It will help you in understanding the concepts better.
Code Example 1
a = [0,1,2,3,4]
b = [2,3,4,5,6,7,8,9,0]
c = a | b
=> [0,1,2,3,4,5,6,7,8,9]
Learn ReactJs, React Native from akashmittal.com