#' Generates a random letter
#'
#' @return A random letter form the alphabet.
#' @export
#'
#' @examples
#' set.seed(1)
#' ralphabet()
#' "Y"
ralphabet <- function(){
return(sample(LETTERS,1))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.