I have a JavaScript object
const categories = Object.keys(titles);
that looks like this
["scifi","horror","comedy"]
I want to add "drama" to the object. I've tried
categories['drama'];
but that doesn't work. How can I add another category to this categories object?