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 Arrays Modifying Arrays

Bummer! The array does not contain the correct values

Can someone please help me with this one, I keep on getting this error message, I dont know exactly what they mean, but when I preview it, its correct?

index.php
<?php

$colors = array("Red","Green","Blue");
//add modifications below this line

$colors[0] = "Magenta";
$colors[2] = "Cyan";

?>
Antonio De Rose
Antonio De Rose
20,884 Points

Question - Without setting the entire array directly, use a function to add "Yellow" to the beginning of the array. Then add "Black" to the end of the array.

<?php
$colors[0] = "Magenta";//should not do this
$colors[2] = "Cyan";//should not do this

//you have use array functions, and not the above, check for array functions - unshift and push.

1 Answer

thank you, I was able to get it to work after you said