Start your All-Access Pass to unlock this challenge
Let's look at this code block:
$animals = array('cat', 'dog', 'hamster'); // let's add a new animal! $animals[2] = 'elephant'; echo count($animals);
What will this print?
4
2
3