What is the output of this program?

var flavors = [];

flavors.push('lemon');

flavors.push('lime');

special = flavors[1];

console.log(special);

The output of this program is "lime".