JavaScript Modules (import/export)

What happens when trying to modify imported values?
// constants.js
export const API_KEY = 'abc123';
export let config = { debug: false };

// main.js
import { API_KEY, config } from './constants.js';
config.debug = true;
API_KEY = 'xyz789';
Next Question (6/21)