I have some JSON I want to display the results of on a webpage. What should I search for to learn how to do this? Everything I've tried shows me how to generate some random JSON. I've GOT some, I want to know what to do with it.

The alternative is converting it to a load of Javascript arrays and doing a document.write(blah1[Math.floor(Math.random()*blah1.length)] + " " + blah2[Math.floor(Math.random()*blah2.length)]) etc.

To clarify, the JSON generates random text. I want to know how I get the fucker on a webpage. I dunno what the JSON equivalent is of Javascript's document.write().
@Inskora Isn't JSON just a JS object? Can't you just be like var myObj = getJSON("path/to/my.json"); then "echo myObj.name"?
@cyanprime I don't know. That's why I'm asking, because I don't know what to search for to find out.