graph representation of this code

Please write out a graph that represents the code below. This code creates a graph using Dictionary (denoted by { }).

graph = { “a” : [“c”],

          “b” : [“c”, “e”],

          “c” : [“a”, “b”, “d”, “e”],

          “d” : [“c”],

          “e” : [“c”, “b”],

          “f” : []

        }

**Note: Do not send this in a program!  I want to see a graph representation of this code only