Choose all the correct ways to create an object of this class:
class News {
var title: String = "-"
var text: String = "-"
var tag: String = "-"
constructor(title: String, text: String) {
this.title = title
this.text = text
this.tag = "no tags"
}
}