I have the following code:
a = [\"Cat\", \"Dog\", \"Mouse\"] s = [\"and\", \"&\"]
I want to merge the array s into array <
s
If you don't want duplicate, why not just use the union operator :
new_array = a | s