Variables give names to values so you can reuse and change them. This lesson uses one const and one let so learners can see both styles in action.
const favoriteFood = "tacos";
let favoriteNumber = 5;
favoriteNumber = 8;
Use const for the food because it does not change.