I don't know how to categorise the type of array that i need. The type of array i require is one which can store 3 different values in a collection.
For Example
var Array = [["John", "Smith", "39"],["Michael", "Angel", "76"]]
Each time i push new data to array in the same format of [Forename, Surname, Age]. How do i declare the array and add data to the array in this format?
Then once in the array retrieve it such as print each collection to console log for example in the following format.
console.log("John" + "Smith" + "39")
console.log("Michael" + "Angel" + "76")