<?php
$i_arr = ["html", "css", "javascript", "php", "vue", "react"];
echo "<pre>";
print_r($i_arr);
echo "</pre>";
shuffle($i_arr);
echo "<pre>";
print_r($i_arr);
echo "</pre>";
?>
<?php
$str = 'abcdef';
$shuffled = str_shuffle($str);
// This will echo something like: bfdaec
echo $shuffled;
?>
str_shuffle("You are beautiful");