How to parse a list for file append line function?

After parsing recursively, I end up with a list of strings with a variable called List1.

When I try to append those lines in a file using the following:
chrome_ltE8IJmeKK

Then I end up with this:

System.Collections.Generic.List`1[System.String]

I was hoping to append the lines that I parsed recursively.

Hello @Redacted
Here is an example to help you :
Capture

BLOCK:HttpRequest
  url = "https://books.toscrape.com/"
  TYPE:STANDARD
  $""
  "application/x-www-form-urlencoded"
ENDBLOCK

BLOCK:Parse
  input = @data.SOURCE
  leftDelim = "<p class=\"price_color\">"
  rightDelim = "</p>"
  RECURSIVE
  MODE:LR
  => VAR @List1
ENDBLOCK

BLOCK:FileAppendLines
  path = "D:\\OpenBullet2\\Prices.txt"
  lines = @List1
ENDBLOCK

Hello. Thank you for the reply. That works. How do I do it if I want to append more than 1 variable and need new lines in between? Using the mode that makes the background blue doesn’t allow new lines.

Then you would need to make another list with the rest of your things and use the Concat function to concatenate the two lists into a single one that you can use in the block, with the blue background.