单项选择题

下面代码的输出是什么?()
const obj = { a: "one", b: "two", a: "three" };
console.log(obj);

A.{a:"one",b:"two"}
B.{b:"two",a:"three"}
C.{a:"three",b:"two"}
D.SyntaxError