LibGDX How should i render a random generated map

Hello first thing first i want to say i am VERY! New to coding,game dev, and java so be nice if the fix is very easy.

I got the generater form here: http://javagamexyz.blogspot.com.au/2013/03/terrain-generation.html

Ok my ? is how should i render. Some thing like

MidpointDisplacement md = new MidpointDisplacement();
		temp = md.getMap();
		for(int row = 0; row < temp.length; row++) {
			for(int col = 0; col < temp[row].length; col++) {
			}
				
		}

But what should i use to render (what do i add the texters to?)

All help is welcomed.

Thank You

If you need more info just ask. Thanks

I don’t know how far you’ve followed these tutorials, but later on the author describes how to move around the map, render it and give it textures.

Map Movement : https://javagamexyz.blogspot.ca/2013/03/the-game-map-pt-2-level-2.html
Rendering : https://javagamexyz.blogspot.ca/2013/03/the-game-map-level-2.html

If that’s what you’re looking for…

I have read that but do not understand
Help?
thx tho