# Names

This file is not relevant to the operation of the script, it is simply a list with random names and surnames for some particular cases, such as obtaining evidence from NPCs or the owner of a vehicle without an owner (a random name is assigned)

{% code title="config/names.lua" overflow="wrap" %}

```lua
Config.RandomNames = {
    { -- Firstnames
        ["male"] = {
            "Tyler",
            "John",
            "Derek",
            ---
        },
        ["female"] = {
            "Dannyel",
            "Mirella",
            "Zowy",
            ---
        } 
    },
    { -- Lastnames
        "Locket",
        "Leon",
        "Kawasaki",
        ---
    }
}
```

{% endcode %}

<div align="center" data-full-width="false"><figure><img src="https://3936778620-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FPLI7NdIesJTaEUHH6a2U%2Fuploads%2FWm4st1ul0ffU48JcHVy1%2Fimage.png?alt=media&#x26;token=d274bcbd-c098-4111-a67e-8226a819349c" alt=""><figcaption></figcaption></figure></div>
