How can I merge two arrays into one with a array functions? (arrays have a common "key")

Hey guys,
So I have two HTTP GET requests where I retrieve arrays that look like that:

Data1:

[
 {
  "date": "2024-11-01", 
  "information1": "sadasds"
 } 
]

Data2:

[
 {
  "date": "2024-11-01", 
  "information2": "abcdefg"
 } 
]

My goal now is to use a “set variable” module and merge these two arrays together but I tried with the functions and stuff and I don’t get it.

In the end it should look like this:

[
 {
  "date": "2024-11-01",
  "information1": "sadasds",
  "information2": abcdefg,
 } 
]

Does anyone have an Idea/clue how I can achieve this? Thanks for your help. For performance reasons I also try to get as less operations as possible so using a lot of Operations for Iterator stuff or something like that doesn’t seem necessary to me - there must be a better solution.

Thanks for your help :slight_smile: