What will this program output?

var flavors = [];

flavors.push('lemon');

flavors.push('lime');

console.log(flavors);

The program will output:

["lemon", "lime"]