Monthly shopping list projects

Hello, I created a shopping list project using JS and I’d like to get feedback on it, and if there are other ways to implement the same function of this project, plz let me know

// Array of the twelv months of year

const year = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'];

// Bunch of arrays representing every month's shopping list

const listOne = ['Skinless white meat', 'Pasta', 'Milk'];
const listTwo = ['Lean cuts of red meat', 'Rice', 'Eggs'];
const listThree = ['Tuna', 'Bread', 'Cheese'];
const listFour = ['Salmon', 'All-purpose flour', 'Yogurt'];
const listFive = ['Mackerel', 'Porridge oats', 'Cooking oil'];
const listSix = ['Breakfast cereal', 'Unsweetened granola', 'Butter'];
const listSeven = ['Luncheon meat', 'Pulses', 'Sugar'];
const listEight = ['Red kidney beans', 'White beans', 'Green lentils'];
const listNine = ['Chopped tomatoes', 'Soup', 'Fruit'];
const listTen = ['nuts', 'seeds', 'Salt'];
const listEleven = ['Basil', 'Oregano', 'Pepper'];
const listTwelv = ['Coriander', 'Cumin', 'Herbs'];

// printing out the current month with the matching shopping list

year.forEach(function(month, index){
    if (index === 0){
    console.log(`The month number ${index + 1} -- ${month} ***** ${listOne} *****\n`);
} else if (index === 1)
{console.log(`The month number ${index + 1} -- ${month} ***** ${listTwo} *****\n`);}
else if (index === 2)
{console.log(`The month number ${index + 1} -- ${month} ***** ${listThree} *****\n`);}
else if (index === 3)
{console.log(`The month number ${index + 1} -- ${month} ***** ${listFour} *****\n`);}
else if (index === 4)
{console.log(`The month number ${index + 1} -- ${month} ***** ${listFive} *****\n`);}
else if (index === 5)
{console.log(`The month number ${index + 1} -- ${month} ***** ${listSix} *****\n`);}
else if (index === 6)
{console.log(`The month number ${index + 1} -- ${month} ***** ${listSeven} *****\n`);}
else if (index === 7)
{console.log(`The month number ${index + 1} -- ${month} ***** ${listEight} *****\n`);}
else if (index === 8)
{console.log(`The month number ${index + 1} -- ${month} ***** ${listNine} *****\n`);}
else if (index === 9)
{console.log(`The month number ${index + 1} -- ${month} ***** ${listTen} *****\n`);}
else if (index === 10)
{console.log(`The month number ${index + 1} -- ${month} ***** ${listEleven} *****\n`);}
else{console.log(`The month number ${index + 1} -- ${month} ***** ${listTwelv} *****\n`);} 

})