factor1 <- factor(c('Hi','there'))
factor2 <- factor(c('we', 'are', 'testing', 'this', 'function'))
fbind(factor1,factor2)
#> [1] Hi       there    we       are      testing  this     function
#> Levels: are function Hi testing there this we