Use the function CONCAT()

If audience.word1 is "hello" and audience.word2 is "robert" then CONCAT(audience.word1, audience.word2) = "hellorobert"
To add a separator between the words then simply add it in the CONCAT function. For example CONCAT(audience.word1, " ", audience.word2) = "hello robert"