单项选择题

var str =’abc’;var re =/(a)(b)c/;console.log(str.match(re));结果是()

A.["abc","a","b"]
B.["abc"]
C.["a","b","c"]
D.["abc","a","b","c"]