1//Im using a let type variable for the example because it's what i reccomend
2
3let exampleArray = ["Example", "Lorem Ispum Dolor", "I think you've got it"]
4
5//Here's how you select a single object in the list
6
7exampleArray[1]
8
9/*In Javascript the arrays start counting at 0 which means i selected the 2nd
10object in the list(Lorem Ispum Dolor) so if i wanna select the first array i
11must type*/
12
13exampleArray[0]
14
15/*Now let's say you want to display it on the console, like let's say you are
16coding in Node.js and you wanna see the value of the array.
17P.S: In the example im gonna show all the values of the array.*/
18
19console.log(exampleArray[0, 1, 2]