Object Descriptors & Property Flags

What happens when attempting to delete a non-configurable property?
const config = {};
Object.defineProperty(config, 'API_KEY', {
  value: 'abc123',
  writable: false,
  enumerable: false,
  configurable: false
});

delete config.API_KEY;
console.log(config.API_KEY);
Next Question (7/40)