ASP Return the value of an item

Return the value of an item

<html>
<body>

<%
dim d
set d=Server.CreateObject("Scripting.Dictionary")
d.Add "n", "Green"
d.Add "i", "Red"
Response.Write("Item value: " & d.item("n"))
set d=nothing
%>

</body>
</html>