<?php $input = ['A', 'B', 'C']; echo array_reduce( $input, fn($result, $v) => ($result ? "$result, " : '') . "$v is $v" );
You have javascript disabled. You will not be able to edit any code.