var colors = ['red','blue','green']; /*// PUSH TO FRONT OF ARRAY ---------------------------*/ colors.unshift('yellow'); // colors = ['yellow, 'red', 'blue', 'green']