(list x y) を評価すると '( (a b c) (1 2 3))
(map list x y) を評価すると '( (a 1) (b 2) (c 3))
(define x '(a b c))
(define y '(1 2 3))