let array =
[[`animal`,`carnivours`],
[`cow`,`milk`],
[`plant`,`small`],
[`fish`,`tank`]]
console.log(array[0]);
as I know if I want to fetch first value from array I have to use array[0] to get all the first name from the array but here I am getting first array from array list as my
expected value is like this
animal
cow
plant
fish
any simplest way to fetch all the first name from the list like this array[0]
or somewhat like this ?