How to split a comma separeted string value from ACF get_field() in WordPress

the problem is that I have a line in the field, but I need to output it so that after the “comma” the line is moved to a new paragraph.
At the moment I am a student and I need help.

$time_work = get_field('time_work');

<div class="time_work">
    <span>Time work:</span>
    <p><?=$time_work?></p>
</div>

p.s. $time-work value is for example “monday,saturday,sunday”…