How to insert spaces between array items?

I successfully removed commas from my tags field but am struggling to insert a space between each tag

<?php foreach ($project->key()->split(',') as $tags): ?>
<?= $tags ?>
<?php endforeach ?>

Best way to achieve that:

<?php echo implode(' ', $project->key()->split(',')) ?>

Without the loop.

1 Like