<?php

    $array = array( 'Linguagem', 'Língua', 'Lang' );
    
    shuffle( $array );
    echo current( $array );

