javascript get array value

JavaScript
var valueAtIndex1 = myValues[1];var array = []
array[0] = "hi"
array[1] = "dude"
var done = false
while (done == false){
var valueToFind = "hi";
  var rounds = array.length;
  if (rounds < 0){
  return false
  }
  if (array[rounds] == valueToFind){
  done = true
    return rounds
  }
  rounds = rounds - 1
}let names = ['Michael', 'Adam', 'NetNinja'];
//now you are free to use the array
conosle.log(names[0]);
Source

Also in JavaScript: