var fruits = ["Banana", "Orange", "Apple", "Mango"];
In the above array i can do fruits.push('Grapes') to insert item but what should i do for the below array to push vegetable inside vegetable array.
var fruits = ["Banana", "Orange", "Apple", "Mango", ["potato", "Tomato"]];