My favorite animal is red panda. But, I also like otter and mountain goat. However, I hate the cockroach.
There are now 7 animals. Let's see them in reverse:
Array ( [0] => ants [1] => clouded leopard [2] => cockroach [3] => dolphins [4] => otter [5] => red panda [6] => worms )Now reverse
Array ( [0] => worms [1] => red panda [2] => otter [3] => dolphins [4] => cockroach [5] => clouded leopard [6] => ants ) 1My new favorite animal is otter
Getting 2nd and 3rd Array ( [0] => cockroach [1] => worms )
Getting 2nd from last Array ( [0] => worms )
Associative Array
Array ( [HouseCat] => Meows [Lion] => Roars [Dolphin] => Clicks ) The lion RoarsMulti Array
Array ( [0] => Array ( [Name] => Lion [Sound] => roars [Feature] => mane ) [1] => Array ( [Name] => Rabbit [Sound] => snuffle [Feature] => Puffy tail ) [2] => Array ( [Name] => Cat [Sound] => Meow [Feature] => whiskers ) )