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 Object-Oriented PHP Basics Building the Recipe Accessing Arrays

James Vlok
James Vlok
17,059 Points

Code Challenge: preview gives correct output but does not pass

Preview prints out "mikes" favourite colour "green". but when submitting I get an error saying I am printing out the wrong value. However the preview shows the correct output which is green.

index.php
<?php

//Place your code below this comment
$colors = array("red","green","blue");
$favorite_colors = array(
                "mike" => "green",
            "jane" => "blue",
            "chris" => "red"
);

//echo $colors[1] . "\n";
echo $favorite_colors["mike"];
?>

2 Answers

hie ,sometimes these challenges can be a bit tricky.the order of $colors array has to be red, blue, green .also i think its best not to comment out the first echo statement. got the following code to work :

$colors = array("red","blue","green");
echo $colors[1] ;
$favorite_colors = array(
            "mike" => "green",
            "jane" => "blue",
            "chris" => "red"
);

echo $favorite_colors["mike"];
James Vlok
James Vlok
17,059 Points

Thanks, George. All the best!