Cannot get full text _score to work properly

Hi I have following records in ES

[ title => 'Elephant Back Safari', 'description' => null]
[ title => 'Festival of Colors', 'description' => null]

Now when I run following search query

"query": {
    "multi_match": {
      "query": "festival color elephant",
      "fields": [
        "title",
        "description"
      ]
    }
  }

I'm getting records in following order

Elephant Back Safari
Festival of Colors

Both records return the _score as 1

But shouldn't I get the ''Festival of Colors' record at the beginning because the search query has two key words of that title?

Could anyone please guide me on this?

Thanks

https://www.elastic.co/guide/en/elasticsearch/guide/current/scoring-theory.html should help clarify this.

Thanks warkolm, even it was little confusing at first. it makes more sense now. :smile: