Why does my table come out in a table: lh123loffg423123 way?

local http = game:GetService("HttpService")

local function printDictionary(dict)
	local success, result = pcall(function()
		return http:JSONEncode(dict)
	end)
	
	if success then
		if result then
			print(result)
		end
	else
		warn(result)
	end
end

printDictionary({["a"] = 1, ["b"] = 2, ["c"] = 3})

That’d be the purpose of JSONEncode().

the topic has been solved doe lol