Question: Which code would you use to print all the elements in an array called `$cupcakes`?

  1. all of the answers
  2. `print_r($cupcakes);`
  3. `var_dump($cupcakes);`
  4. `foreach($cupcakes as &$cupcake) echo $cupcake;`

Answer: The correct answer of the above question is Option A:all of the answers