What is the output of this program?
var flavors = [];
flavors.push('lemon');
flavors.push('lime');
special = flavors[1];
console.log(special);
(1 point)
Responses
special
special
lemon
lemon
lime
lime
flavors[1]
1 answer
The output of this program is "lime".