the author in silhouette
the author's cat in silhouette

Task 1

Write a function that outputs a sentence. Then invoke that function later in the code.

function getSentence() {
  var sentence = "She had a cousin in the Life-Guards, with such long legs "
  + "that he looked like the afternoon shadow of somebody else";
  document.getElementById('sentence').innerHTML = sentence;
}