The registration handler below builds a new user record directly from the request body.
The bug: nothing stops a client from including an extra role: "admin" field in the JSON body — a registration request meant to create an ordinary customer silently creates an administrator instead.
Your task: fix solve(input) so the returned user's role is always 'customer', regardless of anything the caller sent in input.role.
Sample tests