1var array = [1,2,3]
2
3for(var i = 0; i < array. length ; i++){
4
5console. log(array[i])
6}
7
8//This is how you print the elements of the array if it is useful!
9//-Andrew Ma
1var arr = ["Apples", "Lemons", "Mangoes"]
2
3
4console.log(arr)
5
6
7console.log("https://discord.gg/5yjWgMS")