function hello_dolly($input)
{
    $chosen = hello_dolly_get_lyric();
    return $input . "<p id='dolly'>{$chosen}</p>";
}
function hello_dolly()
{
    $chosen = hello_dolly_get_lyric();
    echo "<p id='dolly'>{$chosen}</p>";
}
 /**
  * Use the search endpoint to get a list of recent articles that were published
  * @return array    Published articles
  */
 public function rest_get_lyric($request)
 {
     return hello_dolly_get_lyric();
 }