Project Specs: Create the Kotlin class NoteableItems that
you will use for Project 3c.
Project 3c will be the Jetpack Compose version of your Project 1b. Your
NoteableItems class should implement the items in this UML diagram:
+------------------------------------+
| NoteableItems |
+------------------------------------+
| - items: MutableList<String> |
+------------------------------------+
| + NoteableItems( ) : NoteableItems |
| + addItem(item : String) |
| + getItem( ) : String |
| + toString( ) : String |
+------------------------------------+
The toString method was probably not in your Project 1b Java version, but you should include and test it for this project.