let myArray = [
  "Jason",
  "Doe",
  39,
  "M",
  70000,
  true
];

myArray[1] "Doe"
myArray[5] true
myArray[6] undefined
Comments