What you need to do is use the list option rather than the ... of save.
list
...
save
save(list = "my_object", file = "my_object.rda")
Then when you call
load("my_object.rda")
The object `my_object` will be in your environment.