> For the complete documentation index, see [llms.txt](https://flamex.gitbook.io/dsc-utils/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://flamex.gitbook.io/dsc-utils/getting-started/dropdown-field-selected.md).

# Dropdown field selected

The last step of our walkthrough is the get the selected value of the dropdown

```javascript
client.on("dropdownSelected", dropdown => {
    console.log(dropdown)

    // Response to the dropdown selection with the selected value
    dropdown.reply(You selected ${dropdown.values.map(e => `\`${e}\``).join(" ")}`) // send the selected value(s)
})
```

[🎉](https://emojipedia.org/party-popper/) And everything is done [🎉](https://emojipedia.org/party-popper/)\
\
Now you sended each existing message component for the Discord HTTP api. If you have any problems or issues, feel free to [create an issue](https://github.com/flamexdev/dsc-utils/issues) on github.\
Otherwise fell free to reach me out via [Discord](https://discord.com/users/681424352599736327)!
