单项选择题

const a = {};const b = { key: "b" };const c = { key: "c" };a[b] = 123;a[c] = 456;console.log(a[b]);()

A.123
B.456
C.undefined
D.ReferenceError