var arrayExample = [53,'Hello World!']; console.log(arrayExample) //Output => [53,'Hello World!'] //You can also do this arrayExample.push(true); console.log(arrayExample); //Output => [53,'Hello World!',true];