Which of these will create an array designed for items that will change as the program progresses?

const flavors = [];

let flavors = [];

const flavors;

let flavors;

let flavors = [];

This declaration initializes an empty array that can be updated with new items as the program progresses.