Valeur de sélection aléatoire sur Array Factory Laravel

'value' => $faker->randomElement(['1', '2']),

or

use Illuminate\Support\Arr; //on top
$array = [1, 2, 3, 4, 5];

'value' => Arr::random($array),
David Martínez L