Factories promote loose coupling. Frame the concept in practical terms so you can explain it during interview discussion.
Factories allow your code to depend on a set of abstract interfaces rather than concrete classes. This reduces coupling and makes your system more flexible and easier to maintain. For example, when adding a new payment method, you only need to add a new class and update the factory, not the entire system.