> For the complete documentation index, see [llms.txt](https://help.pickzen.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.pickzen.com/guides/nocode/functions/concat.md).

# CONCAT

### Syntax

**CONCAT(object1, object2, \[separator])**

| Argument name                                    | Description                                  |
| ------------------------------------------------ | -------------------------------------------- |
| <p><strong>object1</strong></p><p>Required</p>   | A text or variable.                          |
| <p><strong>object2</strong></p><p>Required</p>   | A text or variable.                          |
| <p><strong>separator</strong></p><p>Optional</p> | A text separator to separate both arguments. |

### Examples

* **CONCAT('dog', dog)** returns *dog1* if the variable *dog* value is 1.
* **CONCAT(key, value, '-')** returns *dog-1* if the variable key is *dog* and value is 1.
