How to get all words of a website?

Hello, i’m trying to print all of the words in a website but the error is : " Can’t parse JSON "
Script:

local http = game:GetService("HttpService")

local EnglishURL = "http://www.mieliestronk.com/corncob_lowercase.txt"

local englishResp = http:GetAsync(EnglishURL)
local englishData = http:JSONDecode(englishResp)

print(englishData)

Can you help me please?

Working script:

local http = game:GetService("HttpService")

local EnglishURL = "http://www.mieliestronk.com/corncob_lowercase.txt"

local englishResp = http:GetAsync(EnglishURL)

print(englishResp)

The content in the URL isn’t encoded in JSON. You can just use the ‘englishResp’ variable.