Hi L Younkins,
You are getting this result because your code executed gives just one span element with a few words separated with spaces:
<span class='category'>Articles Featured Scholarships</span>
You need to modify the code to get the following result instead, to wrap your categories in separate spans:
<span class='category'>Articles</span><span class='category'>Featured</span><span class='category'>Scholarships</span>