To add BigInteger b1 to b₂ (i.e., assign the result to b₂), you write _________. Please select all that apply.
a) b₂ = b₁.add(b₂);
b) b₂ = b₂.add(b₁);
c) b₂.add(b₁);
d) b₁.add(b₂);