1//adding items to array
2objects = [];
3objects.push("you can add a string,number,boolean,etc");
4//if you more stuff in a array
5//before i made a error doing value = : value
6objects.push({variable1 : value, variable2 : value);
7//we do the {} so we tell it it will have more stuff and the variable : value
8
1//the array comes here
2var numbers = [1, 2, 3, 4];
3
4//here you add another number
5numbers.push(5);
6
7//or if you want to do it with words
8var words = ["one", "two", "three", "four"];
9
10//then you add a word
11words.push("five")
12
13//thanks for reading