The code is kinda tricky, since you can't have any extra spaces there.
Quote:
quotes[7] = "Correct me if I'm wrong, but hasn't the fine line between sanity and madness gotten finer? "
authors[7] = "George Price ";
quotes[8] = "Sanity calms, but madness is more interesting.";
authors[8] = "John Russell";
|
The above won't work.
Quote:
quotes[7] = "Correct me if I'm wrong, but hasn't the fine line between sanity and madness gotten finer? "
authors[7] = "George Price ";
quotes[8] = "Sanity calms, but madness is more interesting.";
authors[8] = "John Russell";
|
The above will.
Quote:
quotes[7] = "Correct me if I'm wrong, but hasn't the fine line between sanity and madness gotten finer?
Maybe"
authors[7] = "George Price ";
|
Above won't.
Quote:
quotes[7] = "Correct me if I'm wrong, but hasn't the fine line between sanity and madness gotten finer? Maybe"
authors[7] = "George Price ";
|
Above will.