Template Strings, this kata is mainly aimed at the new JS ES6 Update introducing Template Strings
Your task is to return the correct string using the Template String Feature.
Two Strings, no validation is needed.
You must output a string containing the two strings with the word 'are'
Reference: https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/template_strings
def TempleStrings(obj, feature)
"#{obj} are #{feature}"
end