I have issues passing the 6th and 7th instruction in task 98....
The constant API must be imported fromconstants.js to solution.js
The constant PROJECT_NAME must be imported from constants.js into solution.js
In the file constants.js, you need to export the constantPROJECT_NAME
In the file constants.js, you need to export the constant API
In the file solution.js, you need to call two console.log
In the first console.log it is gentle to pass the constant API
In the second console.log it is gentle to pass the constant PROJECT_NAME
I passed codes 1 - 5 but 6 and 7 returns as errors
this is my actual code... import {API} from './constants.js'; console.log('api is' + API);
import {PROJECT_NAME} from './constants.js'; console.log('project name is' + PROJECT_NAME);
lakesea the problem is that you're adding extra text to your console logs. Try to remove it and only print out the constants imported from the constants.js.
constants.js