var colors = ["red","blue","green","tomatto","pink"]; colors.push('black'); console.log(colors); // Output is = [ 'red', 'blue', 'green', 'tomatto', 'pink', 'black' ]