Hello,
i would like to use an array of objects but i can only create that array manually. I dont know how to create a bigger one 
My Code:
var test
let arrayOfObjects = [{},{}]
arrayOfObjects[1]['d'] = 777;
test = arrayOfObjects[1]['d'];
msg.logs = test
So i created an Array with 2 Objects. How do i create an Array with 100 Objects ? I could manually set 100 {}, but there must be a better way 
I would like to go with an loop through that array.
The Payload what i want to get into that array looks that way:

Greetings
Chorum