Import constants from the file constants.js and log them to the console using console.log

Each console.log should print a different constant 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

export const API_URL = 'http://localhost:8080';
export const MAX_THREADS = 8;

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
 * */

console.log(MAX_THREADS);