Mmm... soups

The soups array originally had 3 elements.

Array
(
    [Monday] => Clam Chowder
    [Tuesday] => White Chicken Chili
    [Wednesday] => Vegetarian
)

After adding 3 more soups, the array now has 6 elements.

Array
(
    [Monday] => Clam Chowder
    [Tuesday] => White Chicken Chili
    [Wednesday] => Vegetarian
    [Thursday] => Chicken Noodle
    [Friday] => Tomato
    [Saturday] => Cream of Broccoli
)

SOLUTION: Clam Chowder

or concatenate Clam Chowder


 Use print_r() function to show human readable content of any variable.

Array ( [Monday] => Clam Chowder [Tuesday] => White Chicken Chili [Wednesday] => Vegetarian [Thursday] => Chicken Noodle [Friday] => Tomato [Saturday] => Cream of Broccoli )
 Use var_dump() function to display array key and value pairs along with datatype and length.

array(6) { ["Monday"]=> string(12) "Clam Chowder" ["Tuesday"]=> string(19) "White Chicken Chili" ["Wednesday"]=> string(10) "Vegetarian" ["Thursday"]=> string(14) "Chicken Noodle" ["Friday"]=> string(6) "Tomato" ["Saturday"]=> string(17) "Cream of Broccoli" }