#!/bin/bash
# your code goes here

declare -a hash
hash=([a]="A" [b]="B" [c]="C" [d]="D")

echo ${hash[a]}
