lets suppose that i have this .txt file:
this is line one
hello world
line three
in Lua, i want to creat a string only with the content of line two something like i want to get a specific line from this file and put into a string io.open('file.txt', 'r') -- reads only line two and put this into a string, like: local line2 = "hello world"