Hello! I'm kind of confused on what I have wrong here... this is what I'm inputting:

import {API} from './constant.js'
import {PROJECT_NAME} from './constants.js'
console.log(API);
console.log(PROJECT_NAME);

but when I submit, it says:

  1. In the file solution.js, you need to call two console.log
  2. In the first console.log pass the constant API
  3. In the second console.log pass the constant PROJECT_NAME

I'm honestly not sure what I'm missing 🙁

7 days later
Write a Reply...