Given that that value of the each variable used is a text string, which of the following JavaScript statements achieves the same results as let sentence = subject + predicate;?
a let sentence = subject.repeat();
b let sentence = subject.concat(predicate);
c let sentence = subject > predicate;
d let sentence += subject;