What do I add to the code (which is part of a class) below...

Code:
Public Score(0 To 4, 0 To MaxStudentCount) As String
So that when I'm coding in my main program and I type the following...

Code:
Course.Student(i).Score(
VB's intellisense will pop up and suggest something other than....

Code:
Score(,) As String
How do I add the "suggestion"?

I'd like to see something more like
Code:
Score(Quarter as integer, GradeIndex as integer) As String