They are inherently thread-safe. Frame the concept in practical terms so you can explain it during interview discussion.
Immutable objects cannot change state, making them safe to use in multithreaded environments without synchronization. For example, an immutable product catalog ensures that concurrent reads don't result in race conditions.
Additional Notes
Why does immutable objects in Java help in practice?