Thanks, I was trying to output elsewhere for this one, and found that I needed to do:
$groups = rwmb_meta( 'academicrecommendation_multiple', '', $post->ID ) ?? '';
$recommendations = [];
foreach ( $groups as $group ) {
$recommendation = $group[ 'academicrecommendation' ] ?? '';
$recommendations[] = $recommendation;
};
$all_recommendations = '<ul><li>' . implode('</li><li>', $recommendations) . '</li></ul>';
To get what I needed. But this all works!