Nothing in Best result view, but something in Source result view

Why does the result of this script only appear in ‘Source’ view and not ‘Best’ view?
Is that supposed to happen?
EDIT: The result is ‘times,’, but it only appears in ‘Source’ view (nothing in AEPrint either, I just noticed).

use AppleScript version "2.4" -- Yosemite (10.10) or later
use framework "Foundation"
use scripting additions


#  classes, constants, and enums used
property NSString : a reference to current application's NSString

set sourceString to "It was the best of times, it was the worst of times."
set aString to NSString's stringWithString:sourceString
set splitString to " "
set aList to ((NSString's stringWithString:aString)'s componentsSeparatedByString:splitString) as list
aList's item 6 as text

It works just fine OMM, shows up in all 3 modes.

JBS

Edit: Hah, false alarm. Couldn’t see it till I watched the video in full screen. Black text on black background…!

That does lead to the question as to why is the text black in ‘Best’ and ‘AEPrint’ and not white like in ‘Source’, though.

Edit 2: I’m on a roll today. Set Plain Text Formatting to White. Sorted. :zzz: