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 trialJoshua Hardy
17,317 PointsHow do I echo the value in the associative array?
The task says to print Mike's favorite color from the associative array $favorite_colors. I've tried a few different codes: $favorite_colors both [] & () includiing 'mike' and 0. The error that I keep getting is that task 1 no longer passes.
<?php
//Place your code below this comment
$colors = array ('red', 'blue', 'green');
echo $colors [1];
$favorite_colors = array (
'mike' => 'green',
'jane' => 'blue',
'chris' => 'red',
)
echo $favorite_colors[0];
?>
1 Answer
Jennifer Nordell
Treehouse TeacherHi there! You're doing just fine. And the reason task 1 no longer passes is because you've introduced a syntax error. Your $favorite_colors array should end with a semicolon. When I make that change, your code passes all 5 steps.
Hope this helps!
Joshua Hardy
17,317 PointsJoshua Hardy
17,317 PointsThanks!