Which of these statements creates an array?
var colors = ["red" "green" "blue"];
var colors = ["red", "green", "blue"];
That's it!
Don't forget to add commas in between the items.