# Labels

Labels are just like the book's chapters, they define parts in your game. Take a look at this sample script:

```javascript
var script = {
    "Start":[
        "This is a statement."
    ]
}
```

See that "Start" string? That's how a label is defined. Your game will always start in that "Start" label and every game must have one.

Inside it, you'll see a statement, which are the lines that tell your story and the way you'll do many things. As labels are as chapters, you can have as many as you want!

```javascript
var script = {
    "Start":[
        "This is a statement.",
        "jump mylabel"
    ],
    "mylabel":[
        "This is another statement.",
        "Pretty easy huh?"
    ]
}
```

See that "jump mylabel"? that's how you can change between labels, the jump statement will take you to the label you give it.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://developers.monogatari.io/documentation/1.0.0/script/labels.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
