> For the complete documentation index, see [llms.txt](https://arrayutils.docs.present.kim/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://arrayutils.docs.present.kim/methods/g/random.md).

# random()

{% code title="Example.php" %}

```php
<?php use kim\present\utils\arrays\ArrayUtils;

$arrayUtils = ArrayUtils::from(["Apple", "Banana", "Carrot"]);

//Gets random value
$arrayUtils->random();
// output is random, so always different
```

{% endcode %}

## Syntax

```php
$arrayUtils->random() : mixed;
```

### Return value

* A random value from array. If array is empty, returns `NULL`.

## Prefixing

```php
ArrayUtils::randomFrom(iterable $from) : mixed;
```
