Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

PHP PHP Arrays and Control Structures PHP Loops Looping with PHP

I don't really understand what this task is asking me to do.

I don't really understand what this task is asking me to do. It says to echo each flavor inside the foreach loop. I already wrote a code that is echoing all the flavors inside the foreach loop. What am I not understanding? I appreciate any help.

index.php
<?php

$flavors = array();
$flavors[] = array("name" => "Cookie Dough",      "in_stock" => true);
$flavors[] = array("name" => "Vanilla",           "in_stock" => false);
$flavors[] = array("name" => "Avocado Chocolate", "in_stock" => false);
$flavors[] = array("name" => "Bacon Me Crazy",    "in_stock" => true);
$flavors[] = array("name" => "Strawberry",        "in_stock" => false);

//add your code below this line
foreach($flavors as $key => $value){
  $arrKey = 'name';
    echo $flavors[$key][$arrKey]."<br/>\n";
}
?>

1 Answer

Pontus Bolmér
Pontus Bolmér
12,471 Points

All you need to do is to echo $flavours['value'];