index$
FBtoC requires a space between index$ and D or I

Bad:

index$I(0) = "Yikes!"
index$D(0)

Good:

index$ D(0)  // OK
index$ I(0)   // OK