fill() and type() behave differently: fill() clears the field’s existing content and writes the new value, while type() appends to whatever is already there.
The field on the right already contains prefix-. Your job is to append suffix without removing it, so the final value is prefix-suffix.
fill() will not work here — it would erase the existing value.
The goal is only the final result: the exact value
prefix-suffix.