If I understand your question correctly, are you looking for creating an observable from an array so you can subscribe to it? If so, you can search for Rx.Observable.from(iterable, [mapFn], [thisArgs],[scheduler] . This article has a rxjs docs page.
It creates an observable from an array that you can subscribe to.
Something like this might be what you are looking for
Rx.Observable.from([1,2,3]).subscribe(x =>
Sign up for an array change
As stated in the comments, the above approach subscribes to the array and observes the values ββthat are currently in the array, but it has nothing to do with changes to this array.
Perhaps there would be an approach to creating the subject and observing the subject. Instead of clicking values ββon existing arrays, you push values ββinto an object (which contains basically an array of elements). When you click on a topic, you generate an event that can be captured by the subscriber.
source share