What string value is stored in the result variable by the following statement?

result = str.format("{1} {0} is really Superman", "Kent", "Clark")
Select one:

a.
Clark Kent is really Superman

b.
Kent Clark is really Superman

c.
Clark Kent

d.
{1} {0} is really Superman

a. Clark Kent is really Superman