I have fix the code but yet im told its wrong
SOLUTION.JS
/**
- The function sayHello is broken, you need to fix it.
*
- It should take in the users name and return the proper greeting, in example: 'Hello, John!'
- */
import { sayHello } from './helper.js';
sayHello('John'); // Hello, John!
sayHello('Sandy'); // Hello, Sandy!
HELPER.JS:
export const sayHello = (name) => {
console.log('Hello, '+ name + '!');
};