Records are immutable by design. Frame the concept in practical terms so you can explain it during interview discussion.
Records are designed to be immutable, meaning once created, their state can't change. This aligns them with value objects, making them ideal for representing fixed data. For instance, a `Currency` record with fields `String code` and `String symbol` is immutable and concise.