I am presented with this XML code below. What is the XSLT syntax to access the value of the key "var2"?
.
.
<array key = "objects">
<map>
<string key "var1">ID</string>
<string key "var2">Name</string>
<string key "var3">Weather</string>
<map>
</array>
.
.
I'm no XSLT expert, but I'm familiar in my XSLT work with XML variables and intending to assign the value of "var2" in a variable to display in my translated document.