Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

MUZ140886 Mandava
4,675 Pointsit still cant pass
the message bummer has been the order of day please correct me
<?php
$movie = array();
$movie["title"] = "The Empire Strikes Back";
?>
<h1><?php $movie=array('title' =>"The Empire Strikes Back",'year' =>
(1985), 'Director'=> "Robert Zemeckis" ,'IMDB_Rating'=>"8.5",'IMDB_Ranking'
=> "53");?></h1>
()
Director
IMDB Rating
IMDB Ranking
1 Answer

Nicole Archambault
27,848 PointsHi! A couple of things here:
1) I would recommend expanding your array out onto multiple lines so that you can visually check for consistency. For example:
<?php
$movie = array(
'title' => "The Empire Strikes Back",
'year' => 1980
);
?>
A simple array value being echoed generally doesn't need to be spread out, but your call to the array keys and their respective values are incorrect. Think back on what you've learned!
<h1><?php echo $movie['title'];?> (<?php echo $movie['year'];?>)</h1>
2) Remember that integers do not need quotation marks! Take a few minutes to spread out your code and check it for accuracy.
You're almost there, so good luck! If my answer helped you complete the challenge, please show your support by voting/marking it as Best Answer. :)