You have a generic class named MyClass.
class MyClass<T>(t: T) {
val item = t // A field of "some type"
}
Create an instance of MyClass with type the String. The value of the item should be equal to "hyperskill".
There is no need to declare a variable, just specify a class name with the desired parameters.