Codecademy 上的 JS 练习不起作用 - 使用括号表示法访问对象数据

JS Exercise on Codecademy not working - accessing object data with bracket notation

我正在尝试这个问题。 [已编辑]

它希望您将 aProperty 设置为 属性 名称,然后将其与变量 james 一起使用以获取值。

var james = {
    job: "programmer",
    married: false
};

// set to the first property name of "james"
var aProperty = 'job';

// print the value of the first property of "james" 
// using the variable "aProperty"
console.log(james[aProperty])