Destructuring values from an object and assigning it to another object in one go? [duplicate]

I am having 100s of data in request.body and I want only 20 of them but those 20s are getting used in other places too. Can I assign it to another object in the same line after destructuring it?

Example:

const { firstName, lastName, age, role, gender, place } = req.body;  

Can I assign the above destructured data to another object while destructuring it?
I want the equivalent result of below code but in the same line and that too while destructuring it.

const userDetails = { req.body.firstName, req.body.lastName, req.body.age, req.body.role, req.body.gender, req.body.place }