Hi! I have this small problem when reading the lines of a text document using the following code. for line in love.filesystem.lines("questions.txt") do if line ~= "" or line ~= "a" then table.insert(canvas_questions, line) end print(line) -- for debugging purposes end T...