array or object javascript
To remember the difference, you can think of "is a / has a" 
let fruits = [
  orange, 
  mango, 
  banana
];
// Every item in the array "fruits" is a fruit. 
let fruit = {
  seed:{}, 
  endocarp:{}, 
  flesh:{}
};
// The object fruit has every attribute inside the object.