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 trialLeo Koo
5,500 PointsNow using the $favorite_colors array, echo mike's favorite color
Nothing seems to work, though it works well in sublime text
echo $favorite_colors['mike'];
<?php
//Place your code below this comment
$colors = ['red', 'green', 'blue'];
echo $colors[1];
$favorite_colors = array (
'mike' => 'green',
'jane' => 'blue',
'chris' => 'red'
);
echo $favorite_colors["mike"];
2 Answers
Algirdas Lalys
9,389 PointsHi Leo Koo,
I noticed that your $colors array values in wrong order according to challenge requirements. It should be.
<?php
$colors = array('red', 'blue', 'green');
?>
All the rest seems ok:)
Gavin Homan
1,279 PointsHi Leo Keo,
You could also reference the $colors array instead of hardcoding the values again in the $favorite_colors array
<?php
$favorite_colors = array(
'mike' => $colors[0],
'jane' => $colors[1],
'chris' = > $colors[2]
)
?>
That way you only need change the colours in the $colors array.