Untitled
unknown
plain_text
3 years ago
171 B
12
Indexable
<?php
$alphabet = array(
"A",
"B",
"C",
"D",
);
function surf($alphabet){
shuffle($alphabet);
return $alphabet;
}
echo surf();
?>Editor is loading...