I would like to loop through two arrays, compare them and create new array that will contain objects from both arrays but omit ones that are the same: Code below explains how end result should look like. Thank you.
Array1 = [
    {"column": "brand_name1"},
    {"column": "brand_name2"}
    ]
    Array2 = [
    {"column": "brand_name1"},
    {"column": "brand_name3"}
    ]
    And result should be something like
    Array3 = [
    {"column": "brand_name1"},
    {"column": "brand_name2"},
    {"column": "brand_name3"}
    ]
 
    