Trying to show the category of a post in the post display

Use the_category(); on your template. It also supports $separator parameter so you can use your desired separator.

Example: <?php the_category( ', ' ); ?> will separte categories with commas.

By the look of your theme folder structure, you should add <?php the_category( ', ' ); ?> on child-theme=>template-parts=>content-excerpt.php. Add it to line 22. If you want it only for the excerpt posts, use it on line 26.