helper.js
export const sayHello = (name) => {
return ( "Hello," + name +" !");
}
solutions.js
import { sayHello } from './helper.js';
console.log(sayHello('John')); // Hello, John!
console.log(sayHello('Sandy')); // Hello, Sandy!
✓ 1. sayHello should be exported from the file 'helper.js'
✓ 2. sayHello should be a function
X 3. Function sayHello should return the proper greeting
CAN ANYONE TELL ME WHERE I DID the mistake?