functions.js
export const splitLog = (str) => {
str.split('').forEach(symbol => console.log(symbol));
}
solution.js
import { splitLog } from './functions.js';
const message = `
Hello, world 👋!
Let's make our Console Output Fun and Interactive in JavaScript and Node.js 🚀
`;
splitLog(message);