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 trialRamzy Rashaun Arief
3,922 Pointsi dont know why
it says "change the element red to magenta"
<?php
$colors = array("Red","Green","Blue");
array_push($colors, "Black");
array_unshift($colors, "Yellow");
$colors[0] = "Magenta";
$colors[2] = "Cyan";
//add modifications below this line
2 Answers
Jason Anello
Courses Plus Student 94,610 PointsHi Ramzy,
You've changed the array by adding "Yellow" to the beginning. This changes the indexes that the other colors are at.
Martin Lindsey
11,273 PointsWith the array_push and array_unshift you now have five elements in the array.
Base your color change index positions on that larger array.