Question: Which code would you use to print all the elements in an array called `$cupcakes`?
- all of the answers
- `print_r($cupcakes);`
- `var_dump($cupcakes);`
- `foreach($cupcakes as &$cupcake) echo $cupcake;`
Answer: The correct answer of the above question is Option A:all of the answers