Hey, the code is running, but the status says failed. I have imported and exported correctly and the output is also correct. Please help! Where could the problem be?
constants.js
export const API_URL = 'http://url.com';
export const MAX_THREADS = 5;
solution.js
import {API_URL} from "./constants.js";
import {MAX_THREADS} from "./constants.js";
console.log(API_URL);
console.log(MAX_THREADS);