Fail to pass TArray from C++ to Blueprint

What’s the declaration for DisplayAddChatLineInfor()?

Assuming you’ve passed the correct variable types, it’s requesting the function to accept const variables, which means the variables you’re passing are either declared as const variables or you’re instantiating the variables inline during the function call - which automatically declares the variables as const.