Is it possible to filter text in tables

I’m attempting to use table.concat() to get the 3rd argument of the split-up phrase, but it doesn’t seem to filter or do anything with it. I’m using FilterStringAsync method - is it possible to filter in this situation?

			local reason = {}
			for reasonE in string.gmatch(msg, "[^%s]+") do
				table.insert(reason, reasonE)
			end
			reason = table.concat(reason, " ", 3)
			local filter = game:GetService("TextService"):FilterStringAsync(reason, plr.UserId):GetNonChatStringForBroadcastAsync()

Nevermind, I figured out that I was missing an argument above the script.