> For the complete documentation index, see [llms.txt](https://jolzee.gitbook.io/leopard/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://jolzee.gitbook.io/leopard/components/multiple-components-same-response.md).

# Multiple Components - Same Response

{% hint style="info" %}
If you require ***two or more*** components outputted inline for example **you can append a numerical ordering** to the **`extensions`** output parameter.&#x20;
{% endhint %}

For example you might want to show some button options along with an inline carousel.

```groovy
extensions1 = ${ExtensionHelper.displayClickableList(yesNoMaybeOptions,channel)}
```

```groovy
extensions2 = ${ExtensionHelper.displayImageCarousel(imageUrlArray,channel)}
```
