Fix the code by fixing the issues with constants in the file constants.js

You should see messages Hey there! and See you! logged to the screen.

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

const heyThere = 'Hey there!';
const seeYou = 'See you!';

solution.js

/**
 * Import constants from the constants.js file and log them to the console using console.log
 *
 * Each console.log should log a separate constant to the screen
 * */
import { heyThere, seeYou } from './constants.js';

console.log(heyThere);
console.log(seeYou);