Untitled

Anonymous
plain_text
03/13/2023 1:38 PM
228 B
19
Indexable
<?php

$alphabet = array(
    
    "A",
    "B",
    "C",
    "D",
);

function surf($alphabet){
    
    shuffle($alphabet);
    
    return $alphabet;
}

echo surf();
?>
Editor is loading...