It prevents unauthorized requests. Frame the concept in practical terms so you can explain it during interview discussion.
A CSRF token is a unique token generated for a user session and included in forms. It prevents Cross-Site Request Forgery attacks by ensuring that a request is made by the authenticated user. For instance, a form submission without the correct CSRF token will be rejected by the server, stopping attackers from forging requests.