Something is wrong with exports… Again…

Fix the constants.js and make sure that the message is printed out correctly

This task is part of the Full-Stack JavaScript Course
If you have any issues with it, you can ask for community help below the post
Feel free to help others if you’ve already solved the task

constants.js

export target = 'current';
export plugins = ['syntax-async-functions', 'transform-regenerator'];
export ecmaVersion = 'next';

solution.js

import { target, plugins, ecmaVersion } from './constants.js';

console.log(target);
console.log(plugins);
console.log(ecmaVersion);