How do I do an array inside an array?

Hi, I’m need an array that will hold multiple information of each array…

What I mean is:
var myObj = new Array(food, country, taste);
myObj[0] = “Peach”, “Various”, “Sweet”;

For myObj[0] to hold Peach, Various, and Sweet values, is that code correct? How do I call for, say, “Various” in myObj[0]?