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

i dont know why

it says "change the element red to magenta"

index.php
<?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

Hi Ramzy,

You've changed the array by adding "Yellow" to the beginning. This changes the indexes that the other colors are at.

With the array_push and array_unshift you now have five elements in the array.

Base your color change index positions on that larger array.