# Any

Selects an arbitrary element from the given column.

```mathematica
Any(column) → any_value
```

#### Inputs

* `column` - The column from which to select an arbitrary element.

**Example**

```
Any([1, 2, 3, 4]) → 1
Any(["Apple", "Banana", "Cherry"]) → "Apple"
Any([10.5, 20.3, 30.1]) → 10.5
```
