Question #94

Author: admin
tags: JavaScript  
let planet = {
  title: 'Earth',
  index: 3,
};

let title, index = planet;

console.log(title);
What will the console output be?
'Earth'
3
{title: 'Earth', index: 3}
undefined
SyntaxError
Rate the difficulty of the question:
easyhard