Реализуй функцию printArray которая должна принять массив и вывести его на экран c помощью console.log

Каждый элемент должен быть напечатан на новой строке.

Эта задача — часть курса по Full-Stack JavaScript
Ты можешь задать свой вопрос в комментариях под постом
Если ты уже решил задачу, то не стесняйся помочь другим

helper.js

export const printArray = (arr) => {
  console.log(arr);
}

solution.js

/**
 * Implement a function printArray that should take the array and print it to the screen using console.log
 *
 * Each element should be printed on the separate line
 * */

import { printArray } from './helper.js';

const months = [ 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec' ];

printArray(months);