Hi,
how can I use the 'class' => $random_class in the following code, at the moment this does not work
$author_users = get_users( array(
'role' => 'author',
'orderby' => 'rand'
) );
$classes = ['avatar--m', 'avatar--l', 'avatar--xl', 'avatar--xxl'];
foreach ( $author_users as $user ) {
$random_class = $classes[array_rand($classes)];
rwmb_the_value( 'custom_avatar', [
'object_type' => 'user',
'size' => 'thumbnail',
'class' => $random_class
], $user->ID );
echo $random_class;
}