Tableau d'accès JS dans le tableau

let nestedArray = [
	[
		"salmon",
		"halibut",
	],
	[
		"coral",
		"reef",
	]
];

nestedArray[1][0];//just add another index number
Evil Eagle