@okta/oidc-middleware get user group

Is there way I can get group user belongs too ?

*const { ExpressOIDC } = require(’@okta/oidc-middleware’);

const oidc = new ExpressOIDC({
issuer: ‘https://dev-xxx.oktapreview.com/oauth2/default’,
client_id: ‘xxxx’,
client_secret: ‘xxxx’,
redirect_uri: ‘http://localhost:8080/authorization-code/callback’,
scope: ‘openid profile address phone’,
response_type :‘code id_token’
});

Please let me know if I can get user group in nodejs express application. Or any way I can get token in nodejs express application.I will decode token to get user group.Not with oauth I am looking with open id connect.