Arrays 7/7
Deleting Array Elements Finally, you can remove elements using unset : <?php $array = array ( "red" , "blue" , "green" ); unset ( $array [ 2 ]); ?> You can even delete the whole array: <?php unset ( $array ); ?> Instructions Go ahead and remove "Python" from the $languages array using unset () . ? Hint Test how well you're learning and fill in gaps with Codecademy Pro. Learn more. Use the example in the instructions as a guide!