I would like to use a list() generated on server.r to populate a paragraph in ui.r
server.r
shinyServer(function(input, output) {
    output$out <- reactive({
        list(
            a = 'brown',
            b = 'quick',
            c = 'lazy'
        )
    })
})
ui.r
library(shiny)
shinyUI(fluidPage(
    p('The ', output$out$a, output$out$b, 'fox jumps over the ', output$out$c, 'dog')
))
I know that the code is not correct and you have to use helper functions to access data in ui.r, but I just wanted to illustrate my problem.