1 2 3 4 5 6
<?php /* Copyright (c) 2024 Freya Murphy */ function random_value(array $array): mixed { shuffle($array); return end($array); }